9 lines
196 B
C#
9 lines
196 B
C#
namespace ModBus.Net
|
|
{
|
|
public abstract class ProtocalLinker
|
|
{
|
|
public abstract byte[] SendReceive(byte[] content);
|
|
|
|
public abstract bool SendOnly(byte[] content);
|
|
}
|
|
} |