mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-13 20:47:04 +00:00
fix: Add DeviceInterfaceSupport property to JoinResponse
This commit introduces a new property, `DeviceInterfaceSupport`, to the `JoinResponse` class in the `PepperDash.Essentials.WebSocketServer` namespace. This property is a dictionary that maps strings to `DeviceInterfaceInfo` objects, enhancing support for device interfaces. A summary comment has also been added for clarity.
This commit is contained in:
parent
fd70377c7f
commit
8fc4d21f02
1 changed files with 4 additions and 1 deletions
|
|
@ -65,7 +65,10 @@ namespace PepperDash.Essentials.WebSocketServer
|
||||||
[JsonProperty("enableDebug")]
|
[JsonProperty("enableDebug")]
|
||||||
public bool EnableDebug { get; set; }
|
public bool EnableDebug { get; set; }
|
||||||
|
|
||||||
///
|
/// <summary>
|
||||||
|
/// Gets or sets the DeviceInterfaceSupport
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("deviceInterfaceSupport")]
|
||||||
public Dictionary<string, DeviceInterfaceInfo> DeviceInterfaceSupport { get; set; }
|
public Dictionary<string, DeviceInterfaceInfo> DeviceInterfaceSupport { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue