using System.Collections.Generic; namespace BatCharging.Model { public class RemoteStopCharging { /// ///停止原因 /// public byte StopReason { get; set; } /// /// 结构体 /// /// 停止原因。0正常停机 1服务器发现桩异常,强制停机 public RemoteStopCharging(byte stopReason) { this.StopReason = stopReason; } } }