9 lines
200 B
C#
9 lines
200 B
C#
|
namespace NAudio.Extras
|
||
|
{
|
||
|
public class EqualizerBand
|
||
|
{
|
||
|
public float Frequency { get; set; }
|
||
|
public float Gain { get; set; }
|
||
|
public float Bandwidth { get; set; }
|
||
|
}
|
||
|
}
|