Files

15 lines
440 B
C#

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
}
}