-
Notifications
You must be signed in to change notification settings - Fork 26
/
FlexGUIConfig.cs
29 lines (26 loc) · 886 Bytes
/
FlexGUIConfig.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System;
using System.Collections.Generic;
using System.Text;
namespace FlexASIOGUI
{
public class FlexGUIConfig
{
public string backend { get; set; } = "Windows WASAPI";
public int? bufferSizeSamples { get; set; } = null;
public FlexGUIConfigDeviceSection input { get; set; }
public FlexGUIConfigDeviceSection output { get; set; }
public FlexGUIConfig()
{
input = new FlexGUIConfigDeviceSection();
output = new FlexGUIConfigDeviceSection();
}
}
public class FlexGUIConfigDeviceSection
{
public string device { get; set; }
public double? suggestedLatencySeconds { get; set; } = null;
public bool? wasapiExclusiveMode { get; set; } = null;
public bool? wasapiAutoConvert { get; set; } = null;
public int? channels { get; set; }
}
}