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.
20 lines
450 B
20 lines
450 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BatCharging.Model
|
|
{
|
|
/// <summary>
|
|
/// 4.1.5 充放电机响应远程停止充电字段
|
|
/// </summary>
|
|
public class RemoteStopChargingRes
|
|
{
|
|
/// <summary>
|
|
// 停止充电结果.0成功 1设备已停机 0xFF 其他
|
|
/// </summary>
|
|
public byte Result { get; set; }
|
|
}
|
|
}
|