Files

11 lines
282 B
C#
Raw Permalink Normal View History

namespace SHH.CameraDashboard
{
public interface IProtocolProcessor
{
// 匹配 Key(0) 的 Protocol 字符串
string ProtocolType { get; }
// 执行具体的解析与业务逻辑
void Process(byte[] identity, byte[] payloadBytes);
}
}