23 lines
447 B
C#
23 lines
447 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using JiShe.CollectBus.Protocol.Contracts.Interfaces;
|
|
|
|
namespace JiShe.CollectBus.Protocol.Contracts.Abstracts
|
|
{
|
|
public abstract class BaseProtocolPlugin:IProtocolPlugin
|
|
{
|
|
public abstract Models.Protocol Get();
|
|
|
|
public abstract void Received();
|
|
|
|
public abstract void Send();
|
|
|
|
public void Load()
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
}
|