21 lines
497 B

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);
}
}
}