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