Creado apartir del commit b888de6c92056de294456f581a56e25e734d4ab7 de develop
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
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();
|
||||
}
|
||||
Reference in New Issue
Block a user