mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2025-12-06 04:12:02 +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;
|
|
}
|
|
}
|
|
}
|