mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-02-07 12:44:00 -05:00
19 lines
399 B
C#
19 lines
399 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LibationUiBase
|
|
{
|
|
public class SampleRateSelection
|
|
{
|
|
public AAXClean.SampleRate SampleRate { get; }
|
|
public SampleRateSelection(AAXClean.SampleRate sampleRate)
|
|
{
|
|
SampleRate = sampleRate;
|
|
}
|
|
public override string ToString() => $"{(int)SampleRate} Hz";
|
|
}
|
|
}
|