using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SHARP_CLAS_UI { public class Panel_Count_Info { #region Property public DateTime Day_Time { get; set; } public int Day_ULD_OK_Count { get; set; } public int Day_ULD_NG_Count { get; set; } public DateTime Minute_Time { get; set; } public int Minute_ULD_OK_Count { get; set; } public int Minute_ULD_NG_Count { get; set; } public int CleaningCount { get; set; } #endregion #region Construct public Panel_Count_Info() { Day_Time = DateTime.Now; Day_ULD_OK_Count = 0; Day_ULD_NG_Count = 0; Minute_Time = DateTime.Now; Minute_ULD_OK_Count = 0; Minute_ULD_NG_Count = 0; CleaningCount = 0; } #endregion #region Function public Panel_Count_Info Clone() { Panel_Count_Info info = new Panel_Count_Info(); info.Day_Time = this.Day_Time; info.Day_ULD_OK_Count = this.Day_ULD_OK_Count; info.Day_ULD_NG_Count = this.Day_ULD_NG_Count; info.Minute_Time = this.Minute_Time; info.Minute_ULD_OK_Count = this.Minute_ULD_OK_Count; info.Minute_ULD_NG_Count = this.Minute_ULD_NG_Count; info.CleaningCount = this.CleaningCount; return info; } #endregion } }