BathDataItem.cs 598 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Runtime.Serialization;
  6. namespace Aitex.Core.UI.ControlDataContext
  7. {
  8. [DataContract]
  9. [Serializable]
  10. public class BathDataItem
  11. {
  12. [DataMember]
  13. public string BathName;
  14. [DataMember]
  15. public bool IsCommErr;
  16. [DataMember]
  17. public bool IsOutofTempRange;
  18. [DataMember]
  19. public bool IsCutoffAlarm;
  20. [DataMember]
  21. public bool IsLevelWarning;
  22. [DataMember]
  23. public double TemperatureReading;
  24. }
  25. }