2026-01-09 12:30:36 +08:00
|
|
|
|
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";
|
|
|
|
|
|
|
2026-01-12 18:27:58 +08:00
|
|
|
|
public const string Sync_Camera = "Sync_Camera";
|
|
|
|
|
|
|
|
|
|
|
|
public const string Remove_Camera = "Remove_Camera";
|
2026-01-09 12:30:36 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|