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;
|
|||
|
}
|
|||
|
}
|