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