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
/// 应答结果 0: 成功 1:失败
public byte ResponseResults {get;set; }
/// 失败原因 0:正常 1:参数非法 2:双向充电设备放电中 0xFF:其他原因
public byte FailurReason { get;set;}
}