Files
adas-core/adas-core.module.ProxyDevices/ProxyDeviceSettings.cs

13 lines
340 B
C#

namespace adas_core.module.ProxyDevices;
public class ProxyDeviceSettings : List<ProxyDevice>
{
}
public class ProxyDevice
{
public string Id { get; set; } = null!;
public string Type { get; set; } = null!;
public bool Enabled { get; set; } = true;
public Dictionary<string, object?> Parameters { get; set; } = new();
}