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
666 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Collections.Generic;
using System.Diagnostics.Metrics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BatCharging.Model
{
/// <summary>
/// 3.4.2 充放电机应答站功率调节指令
/// </summary>
public class PowerRegulateResult
{
/// <summary>
/// 应答结果 0: 成功 1失败
/// </summary>
public byte ResponseResults {get;set; }
/// <summary>
/// 失败原因 0正常 1参数非法 2双向充电设备放电中 0xFF:其他原因
/// </summary>
public byte FailurReason { get;set;}
}
}