Files
lux/EgwCoreLib.Lux.Core/Generic/GroupDetailDTO.cs
T
2026-01-21 12:36:10 +01:00

21 lines
557 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EgwCoreLib.Lux.Core.Generic
{
public class GroupDetailDTO
{
#region Public Properties
public string MachineName { get; set; } = "";
public List<string> TagList { get; set; } = new List<string>();
public int TotalBarQty { get; set; } = 0;
public int TotalNumPart { get; set; } = 0;
public decimal TotalTime { get; set; } = 0;
#endregion Public Properties
}
}