13 lines
405 B
C#
13 lines
405 B
C#
|
|
namespace SHH.Contracts
|
|||
|
|
{
|
|||
|
|
public static class ProtocolHeaders
|
|||
|
|
{
|
|||
|
|
// 核心协议头定义
|
|||
|
|
public const string ServerRegister = "SERVER_REGISTER";
|
|||
|
|
public const string StatusBatch = "STATUS_BATCH";
|
|||
|
|
public const string Command = "COMMAND";
|
|||
|
|
public const string CommandResult = "COMMAND_RESULT";
|
|||
|
|
|
|||
|
|
public const string SyncCamera = "Sync_Camera";
|
|||
|
|
}
|
|||
|
|
}
|