Files
Ayay/SHH.Contracts/Commands/ProtocolHeaders.cs

15 lines
468 B
C#
Raw Normal View History

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 Sync_Camera = "Sync_Camera";
public const string Remove_Camera = "Remove_Camera";
}
}