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