mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-11 19:44:52 +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:
@@ -65,7 +65,10 @@ namespace PepperDash.Essentials.WebSocketServer
|
||||
[JsonProperty("enableDebug")]
|
||||
public bool EnableDebug { get; set; }
|
||||
|
||||
///
|
||||
/// <summary>
|
||||
/// Gets or sets the DeviceInterfaceSupport
|
||||
/// </summary>
|
||||
[JsonProperty("deviceInterfaceSupport")]
|
||||
public Dictionary<string, DeviceInterfaceInfo> DeviceInterfaceSupport { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user