Mark van Renswoude
ff1e1ca74c
Implemented orchestrator Implemented mock device Implemented serial device Implemented volume action Removed old implementation
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;
|
|
}
|
|
}
|