fix: remove unused imports from StatusProperties, restore public properties in RoomResponse

This commit is contained in:
Aviv Cohn
2025-12-09 22:57:56 -05:00
parent d6b5dc00e6
commit 50fc40cc4d
2 changed files with 3 additions and 11 deletions

View File

@@ -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>
} }

View File

@@ -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
{ {