using System.Text.Json; namespace OMS.NET.Instructs { /// /// 广播指令的基类 /// public class BroadcastInstuct : Instruct { public BroadcastInstuct() { this.Type = "broadcast"; } } public class SendCorrectInstuct : Instruct { public SendCorrectInstuct() { this.Type = "send_error"; } } public class SendErrorInstuct : Instruct { public SendErrorInstuct() { this.Type = "send_correct"; } } }