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