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.

19 lines
361 B

using HybirdFrameworkCore.Autofac.Attribute;
namespace Service.TBox.Msg.Host;
public class RestartMsg : BaseMsg
{
/// <summary>
/// "0无指令 1重启指令"
/// </summary>
[Property(80, 2)]
public byte Restart { get; set; }
public RestartMsg(byte restart)
{
Id = 0x18FFF8A8;
Restart = restart;
}
}