mirror of
https://github.com/UzixLS/sdrsharp-catcontroller.git
synced 2025-07-18 14:51:28 +03:00
20 lines
305 B
C#
20 lines
305 B
C#
/*
|
|
* Created by SharpDevelop.
|
|
* User: uzix
|
|
* Date: 04.01.2017
|
|
* Time: 16:46
|
|
*/
|
|
using System;
|
|
|
|
using SDRSharp.Radio;
|
|
|
|
|
|
namespace SDRSharp.SerialController
|
|
{
|
|
public interface SerialRadioInterface
|
|
{
|
|
long RadioFrequency { get; set; }
|
|
DetectorType RadioMode { get; set; }
|
|
}
|
|
}
|