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.
23 lines
527 B
23 lines
527 B
using System.Collections.Generic;
|
|
|
|
namespace BatCharging.Model
|
|
{
|
|
public class RemoteStopCharging
|
|
{
|
|
/// <summary>
|
|
///停止原因
|
|
/// </summary>
|
|
public byte StopReason { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结构体
|
|
/// </summary>
|
|
/// <param name="stopReason">停止原因。0正常停机 1服务器发现桩异常,强制停机</param>
|
|
public RemoteStopCharging(byte stopReason)
|
|
{
|
|
this.StopReason = stopReason;
|
|
}
|
|
|
|
|
|
}
|
|
} |