using Edge.Core.Parser.BinaryParser.Attributes; using Edge.Core.Parser.BinaryParser.Util; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LanTian_Pump_664_Or_886.MessageEntity.Incoming { internal class ReadCloseAheadValveThresholdResponse : MessageBase { /// /// Without decimal points, should range from 0-99 /// public int Value { get { return base.BodyAndXRL.Take(1).GetBCD(); } } } }