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.
17 lines
358 B
17 lines
358 B
2 years ago
|
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];
|
||
|
}
|
||
|
}
|
||
|
}
|