Mark van Renswoude
28c25c8b43
Implemented mute/unmute input and output actions Changed MockDevice to EmulatorDevice with UI for easier testing
11 lines
336 B
C#
11 lines
336 B
C#
namespace MassiveKnob.Plugin.EmulatorDevice.Settings
|
|
{
|
|
public class EmulatorDeviceSettings
|
|
{
|
|
public int AnalogInputCount { get; set; } = 2;
|
|
public int DigitalInputCount { get; set; } = 2;
|
|
public int AnalogOutputCount { get; set; } = 2;
|
|
public int DigitalOutputCount { get; set; } = 2;
|
|
}
|
|
}
|