mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-10 02:05:08 +00:00
15 lines
375 B
C#
15 lines
375 B
C#
using Newtonsoft.Json;
|
|
using System.Collections.Generic;
|
|
|
|
namespace PepperDash.Essentials.Core.UDMApi
|
|
{
|
|
internal class StatusProperties
|
|
{
|
|
/// <summary>
|
|
/// Dictionary of device statuses keyed by device identifier
|
|
/// </summary>
|
|
[JsonProperty("devices")]
|
|
public Dictionary<string, DeviceStatus> devices { get; set; }
|
|
}
|
|
}
|