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.
37 lines
762 B
37 lines
762 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BatCharging.Model
|
|
{
|
|
/// <summary>
|
|
/// 站控发送鉴权结果
|
|
/// </summary>
|
|
public class AuthResult
|
|
{
|
|
/// <summary>
|
|
/// 充电机有回复
|
|
/// </summary>
|
|
public bool F_HaveRes { get; set; }
|
|
|
|
/// <summary>
|
|
/// 自增识别号
|
|
/// </summary>
|
|
public UInt16 F_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 鉴权认证信息
|
|
/// </summary>
|
|
public Auth F_Auth { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 充电机应答站控鉴权认证消息
|
|
/// </summary>
|
|
public AuthRes F_AuthRes { get; set; }
|
|
|
|
}
|
|
}
|