using System; namespace Shared { /// /// 空调 /// [System.Serializable] public class AC : Common { /// /// 温度模式 /// public byte TemperatureMode = 0; /// /// 室内温度 /// public byte IndoorTemperature; /// /// 制冷温度 /// public byte CoolTemperature; /// /// 制热温度 /// public byte HeatTemperature; /// /// 自动温度 /// public byte AutoTemperature; /// /// 除湿温度 /// public byte ChuShiTemperature; /// /// 实际工作模式及风速 /// public byte RealModeAndFanSpeed; /// /// 开关 /// public byte Power; /// /// 设置模式 /// public byte SetMode = 0; /// /// 设置风速 /// public byte SetFanSpeed; /// /// 设置温度 /// public byte SetTemperature = 25; /// /// 扫风模式 /// public byte ShaoFanMode; public string Windpicture = "AC/ACAuto.png"; public string Modepicture = "AC/ACRefrigeration.png"; } }