You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
577 B
C#
31 lines
577 B
C#
using System.Text.Json;
|
|
|
|
namespace OMS.NET.Instructs
|
|
{
|
|
/// <summary>
|
|
/// 广播指令的基类
|
|
/// </summary>
|
|
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";
|
|
}
|
|
}
|
|
} |