using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Shared { /// /// ³¡¾° /// [System.Serializable] public class CommonSwitch : Common { public CommonSwitch () : base () { this.Type = DeviceType.CommonSwitch; } /// /// ¿ª¹ØºÅ /// public byte SwitchNumber; /// /// ״̬ /// public byte SwitchStatus; } }