mirror of
https://github.com/UzixLS/sdrsharp-catcontroller.git
synced 2025-07-18 14:51:28 +03:00
18 lines
321 B
C#
18 lines
321 B
C#
/*
|
|
* Created by SharpDevelop.
|
|
* User: uzix
|
|
* Date: 04.01.2017
|
|
* Time: 16:02
|
|
*/
|
|
using System;
|
|
|
|
namespace SDRSharp.SerialController
|
|
{
|
|
public interface ProtocolInterface
|
|
{
|
|
string EndMarker { get; }
|
|
string PktTransmitter(string ChangedProperty);
|
|
string PktReceiver(string ReveivedData);
|
|
}
|
|
}
|