17 lines
312 B
C#
Raw Normal View History

2024-09-30 17:10:43 +08:00
using JiShe.CollectBus.Protocol.Contracts.Models;
2024-10-12 23:42:15 +08:00
using TouchSocket.Sockets;
2024-09-30 17:10:43 +08:00
namespace JiShe.CollectBus.Protocol.Contracts.Interfaces
{
public interface IProtocolPlugin
{
2024-10-08 14:41:41 +08:00
ProtocolInfo Get();
2024-09-30 17:10:43 +08:00
void Load();
2024-10-12 23:42:15 +08:00
void Received(ReceivedDataEventArgs e);
2024-09-30 17:10:43 +08:00
void Send();
}
}