mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2026-04-21 06:13:41 +00:00
17 lines
144 B
C#
17 lines
144 B
C#
|
|
namespace SDRSharp.Radio
|
||
|
|
{
|
||
|
|
public interface IBaseProcessor
|
||
|
|
{
|
||
|
|
double SampleRate
|
||
|
|
{
|
||
|
|
set;
|
||
|
|
}
|
||
|
|
|
||
|
|
bool Enabled
|
||
|
|
{
|
||
|
|
get;
|
||
|
|
set;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|