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.

21 lines
466 B

namespace BatCharging.Model
{
public class AuxiliaryPowerRes
{
/// <summary>
///应答结果
/// </summary>
public byte Result { get; set; }
/// <summary>
///失败原因
/// </summary>
public byte FailReason { get; set; }
public AuxiliaryPowerRes(byte result, byte failReason)
{
this.Result = result;
this.FailReason = failReason;
}
}
}