using Newtonsoft.Json;
using System.Collections.Generic;
namespace PepperDash.Essentials.Core
{
internal class StatusProperties
{
///
/// Dictionary of device statuses keyed by device identifier
///
[JsonProperty("devices")]
public Dictionary Devices { get; set; }
}
}