You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
421 B

using System;
using GPSBusiness.Helper;
namespace GPSBusiness.BBGPSStandard
{
/// <summary>
/// ÌáÎÊÓ¦´ð
/// </summary>
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];
}
}
}