mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 20:54:55 +00:00
fix: remove unused imports from StatusProperties, restore public properties in RoomResponse
This commit is contained in:
@@ -25,22 +25,18 @@ namespace PepperDash.Essentials.Core.UDMApi
|
|||||||
/// Standard room properties
|
/// Standard room properties
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("standard")]
|
[JsonProperty("standard")]
|
||||||
public StandardProperties standard { get; private set; }
|
public StandardProperties standard { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Status information including devices
|
/// Status information including devices
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("status")]
|
[JsonProperty("status")]
|
||||||
public StatusProperties status { get; private set; }
|
public StatusProperties status { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Custom properties dictionary
|
/// Custom properties dictionary
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("custom")]
|
[JsonProperty("custom")]
|
||||||
public Dictionary<string, CustomProperties> custom { get; private set; }
|
public Dictionary<string, CustomProperties> custom { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Represents status properties including devices
|
|
||||||
/// </summary>
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,9 +1,5 @@
|
|||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace PepperDash.Essentials.Core.UDMApi
|
namespace PepperDash.Essentials.Core.UDMApi
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user