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.

25 lines
516 B

using System.Collections.Generic;
namespace BatCharging.Model
{
public class StartChargingFinishedRes
{
/// <summary>
// 成功标识
/// </summary>
public byte Result { get; set; }
/// <summary>
// 失败原因
// </summary>
public byte FailReason { get; set; }
public StartChargingFinishedRes(byte result, byte failReason)
{
this.Result = result;
this.FailReason = failReason;
}
}
}