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.
26 lines
539 B
26 lines
539 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BatCharging.Model
|
|
{
|
|
/// <summary>
|
|
/// 4.1.3 充放电机响应远程启动充电字段
|
|
/// </summary>
|
|
public class RemoteStartChargingRes
|
|
{
|
|
/// <summary>
|
|
// 启动结果.0成功 1失败
|
|
/// </summary>
|
|
public byte Result { get; set; }
|
|
|
|
/// <summary>
|
|
// 失败原因
|
|
// </summary>
|
|
public byte FailReason { get; set; }
|
|
|
|
}
|
|
}
|