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.4 充放电机应答辅助控制
/// </summary>
public class AuxiliaryPowerControlResult
/// 应答结果 0: 成功 1:失败
public byte ResponseResults {get;set; }
/// 失败原因 0:正常 1:电池包/或者充电枪未连接 0xFF:其他
public byte FailurReason { get;set;}
}