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.

16 lines
358 B

namespace GPSBusiness.BBGPSStandard
{
/// <summary>
/// 信息点播/取消
/// </summary>
public class Data_0303
{
public byte DataType;
public byte SetSign;
public void FromBytes(Data_0303 model, byte[] buffer)
{
model.DataType = buffer[0];
model.SetSign = buffer[1];
}
}
}