mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2026-01-02 14:39:59 +01:00
14 lines
163 B
C#
14 lines
163 B
C#
using SDRSharp.Radio;
|
|
|
|
namespace SDRSharp.NoiseReduction
|
|
{
|
|
public interface INoiseProcessor : IBaseProcessor
|
|
{
|
|
int NoiseThreshold
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|