1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Runtime.Serialization;
- namespace Aitex.Core.UI.ControlDataContext
- {
- [DataContract]
- [Serializable]
- public class BathDataItem
- {
- [DataMember]
- public string BathName;
- [DataMember]
- public bool IsCommErr;
- [DataMember]
- public bool IsOutofTempRange;
- [DataMember]
- public bool IsCutoffAlarm;
- [DataMember]
- public bool IsLevelWarning;
- [DataMember]
- public double TemperatureReading;
- }
- }
|