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.

20 lines
436 B

7 months ago
using HybirdFrameworkCore.Autofac.Attribute;
7 months ago
namespace Service.Car.Msg.Host.Resp;
public class ElecMsgResp : BaseMsg
{
7 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)
{
this.Result = result;
}
}