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 HybirdFrameworkCore.Autofac.Attribute;
namespace Service.Charger.Msg.Charger.Resp;
/// <summary>
/// 开始换电命令回复
/// </summary>
public class StartBatterySwapResq : ASDU
{
/// 应答结果 0:成功
[Property(0, 8 )]
public byte AnswerResult {get;set;}
/// 不执行原因
[Property(8, 8 )]
public byte ReasonNotExecuting {get;set;}
}