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