10 lines
252 B
C#
10 lines
252 B
C#
|
namespace MassiveKnob.Plugin.MockDevice.Settings
|
|||
|
{
|
|||
|
public class MockDeviceSettings
|
|||
|
{
|
|||
|
public int AnalogCount { get; set; } = 3;
|
|||
|
public int DigitalCount { get; set; } = 1;
|
|||
|
public int Interval { get; set; } = 5;
|
|||
|
}
|
|||
|
}
|