1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MECF.Framework.Common.CommonData.Rinse
- {
- public class RinseLotTrackData
- {
- public DateTime TimeStamp { get; set; }
-
-
-
- public string StateMachine { get; set; }
-
-
-
- public double WaterLevel { get; set; }
-
-
-
- public bool DIFillEnabled { get; set; }
-
-
-
- public bool DumpEnabled { get; set; }
-
-
-
- public double WaterPressure { get; set; }
-
-
-
- public double Resistivity { get; set; }
- }
- }
|