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.

45 lines
970 B

using System;
using System.Text;
using System.Collections.Generic;
namespace BatCharging.Model
{
/// <summary>
/// 鉴权信息
/// </summary>
public class Auth
{
/// <summary>
/// 记录类型
/// </summary>
public byte RecordType { get; set; }
/// <summary>
/// 客户端类型.1站控 2本地控制器 3测试客户端 4TCU模式 0未知设备
/// </summary>
public byte ClientType { get; set; }
/// <summary>
/// 连接序号
/// </summary>
public UInt16 ConnSeq { get; set; }
/// <summary>
/// 鉴权码字节数组
/// </summary>
public byte[] AuthCodes { get; set; }
/// <summary>
/// 鉴码KEY
/// </summary>
public byte AuthCodeKey { get; set; }
/// <summary>
/// 鉴权类结构体
/// </summary>
public Auth()
{
}
}
}