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