fix: use standard C# property naming structure, jsonproperties to conform to api

This commit is contained in:
Aviv Cohn
2025-12-09 23:12:29 -05:00
parent e44a7160ad
commit 9ef23cfcfe
5 changed files with 20 additions and 20 deletions

View File

@@ -9,6 +9,6 @@ namespace PepperDash.Essentials.Core.UDMApi
/// Dictionary of device statuses keyed by device identifier
/// </summary>
[JsonProperty("devices")]
public Dictionary<string, DeviceStatus> devices { get; set; }
public Dictionary<string, DeviceStatus> Devices { get; set; }
}
}