21 lines
557 B
C#
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
|
|
}
|
|
} |