using System.Collections.Generic; namespace BatCharging.Model { public class OutSideAllowCharging : ASDU { /// /// SOC 限制值 /// public byte SocValue { get; set; } public OutSideAllowCharging(byte socValue) { this.SocValue = socValue; } } }