using Newtonsoft.Json; using Newtonsoft.Json.Linq; using PepperDash.Essentials.Core.DeviceTypeInterfaces; namespace PepperDash.Essentials.AppServer.Messengers { /// /// Represents a MobileControlMessage /// public class MobileControlMessage : IMobileControlMessage { /// /// Gets or sets the Type /// [JsonProperty("type")] public string Type { get; set; } /// /// Gets or sets the ClientId /// [JsonProperty("clientId")] public string ClientId { get; set; } /// /// Gets or sets the Content /// [JsonProperty("content")] public JToken Content { get; set; } } }