28 lines
630 B
C#
28 lines
630 B
C#
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();
|
|
}
|
|
}
|
|
}
|