namespace EgwCoreLib.Lux.Core.Generic { public class GroupDetailDTO { #region Public Properties public string MachineName { get; set; } = ""; public List TagList { get; set; } = new List(); public int TotalBarQty { get; set; } = 0; public int TotalNumPart { get; set; } = 0; public decimal TotalTime { get; set; } = 0; #endregion Public Properties } }