using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Shared { /// /// 空调模块 /// [System.Serializable] public class YiPanelHVAC : YiPanelAC { public YiPanelHVAC () { Type = DeviceType.HVAC; DeviceTextID = SimpleControl.R.MyInternationalizationString.AC; } } }