JiShe.CollectBus/JiShe.CollectBus.Protocol/StandardProtocolPlugin.cs

28 lines
630 B
C#
Raw Normal View History

2024-09-30 17:10:43 +08:00
using JiShe.CollectBus.Protocol.Contracts.Interfaces;
namespace JiShe.CollectBus.Protocol
{
public class StandardProtocolPlugin:IProtocolPlugin
{
public Contracts.Models.Protocol Get()
{
return new Contracts.Models.Protocol("Standard", "376.1", "TCP","376.1协议","DTS1980");
}
public void Load()
{
throw new NotImplementedException();
}
public void Received()
{
throw new NotImplementedException();
}
public void Send()
{
throw new NotImplementedException();
}
}
}