using BatCharging.Model; using BatCharging.Service; namespace BatCharging.Service.Decoder.New { public class DisconnectStopChargeDecoder { internal byte DisconnectStopChargeResult(byte[] msgRecv) { byte msgResult = 254; if (msgRecv != null) { int num = msgRecv.Length; if (num >= 26) { msgResult = msgRecv[25]; } } return msgResult; } } }