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.

24 lines
443 B

using System;
namespace BatCharging.Model
{
public class AuthRes : ASDU
{
/// <summary>
/// 连接序号
/// </summary>
public UInt16 ConnSeq { get; set; }
/// <summary>
/// 鉴权结果
/// </summary>
public byte AuthResult { get; set; }
/// <summary>
/// 失败原因
/// </summary>
public byte FailReason { get; set; }
}
}