16 lines
265 B
C#
16 lines
265 B
C#
using JiShe.CollectBus.Protocol.Contracts.Models;
|
|
|
|
namespace JiShe.CollectBus.Protocol.Contracts.Interfaces
|
|
{
|
|
public interface IProtocolPlugin
|
|
{
|
|
Models.Protocol Get();
|
|
|
|
void Load();
|
|
|
|
void Received();
|
|
|
|
void Send();
|
|
}
|
|
}
|