mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-01-16 01:39:03 -05:00
13 lines
282 B
C#
13 lines
282 B
C#
namespace LibationUiBase
|
|
{
|
|
public class SampleRateSelection
|
|
{
|
|
public AAXClean.SampleRate SampleRate { get; }
|
|
public SampleRateSelection(AAXClean.SampleRate sampleRate)
|
|
{
|
|
SampleRate = sampleRate;
|
|
}
|
|
public override string ToString() => $"{(int)SampleRate} Hz";
|
|
}
|
|
}
|