using System.Collections.Generic; namespace BatCharging.Model { public class AuxiliaryPower : ASDU { /// ///打开辅助电源标志 /// public byte OpenFlag { get; set; } public AuxiliaryPower(byte openFlag) { this.OpenFlag = openFlag; } } }