SDRSharp/SDRSharp.Common/SDRSharp.Common/IVFOSource.cs
2018-03-24 23:01:41 -07:00

28 lines
239 B
C#

namespace SDRSharp.Common
{
public interface IVFOSource
{
long VFOFrequency
{
get;
set;
}
int VFODecimation
{
get;
set;
}
int VFOMinIQDecimation
{
get;
}
double VFOMaxSampleRate
{
get;
}
}
}