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.
21 lines
497 B
21 lines
497 B
2 years ago
|
using GPSBusiness.Helper;
|
||
|
namespace GPSBusiness.BBGPSStandard
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// �ն˼�Ȩ
|
||
|
/// </summary>
|
||
|
public class Data_0102
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// ��Ȩ��
|
||
|
/// </summary>
|
||
|
public string AuthorizationCode;
|
||
|
public void FromBytes(Data_0102 model, byte[] buffer)
|
||
|
{
|
||
|
int length = buffer.Length;
|
||
|
if (length > 0)
|
||
|
model.AuthorizationCode = ByteConvert.ToString(buffer, 0, length);
|
||
|
}
|
||
|
}
|
||
|
}
|