using System; using GPSBusiness.Helper; namespace GPSBusiness.BBGPSStandard { /// /// جلختس¦´ً /// public class Data_0302 { public UInt16 PT_SerialNo; public byte Answer; public void FromBytes(Data_0302 model, byte[] buffer) { model.PT_SerialNo = ByteConvert.ToUInt16(buffer, 0); model.Answer = buffer[2]; } } }