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 HybirdFrameworkCore.Autofac.Attribute;
namespace Service.Car.Msg.Host.Resp;
public class ElecMsgResp : BaseMsg
{
/// <summary>
/// 0:成功;1:失败
/// </summary>
[Property(248, 8)] public byte Result { get; set; }
/// <param name="result"></param>
public ElecMsgResp(byte result)
Cmd = 0x02;
Length = 33;
this.Result = result;
}