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.
20 lines
497 B
20 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);
|
|
}
|
|
}
|
|
}
|
|
|