2024-10-12 23:42:15 +08:00

17 lines
312 B
C#

using JiShe.CollectBus.Protocol.Contracts.Models;
using TouchSocket.Sockets;
namespace JiShe.CollectBus.Protocol.Contracts.Interfaces
{
public interface IProtocolPlugin
{
ProtocolInfo Get();
void Load();
void Received(ReceivedDataEventArgs e);
void Send();
}
}