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.

22 lines
477 B

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