using GPSBusiness.Helper;
namespace GPSBusiness.BBGPSStandard
{
///
/// Öն˼øȨ
///
public class Data_0102
{
///
/// ¼øȨÂë
///
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);
}
}
}