using Newtonsoft.Json;
namespace PepperDash.Essentials.AppServer
{
///
/// Generic container for simple mobile control message content with a single value
///
/// The type of the value contained in the message
public class MobileControlSimpleContent
{
///
/// Gets or sets the value of the message content
///
[JsonProperty("value", NullValueHandling = NullValueHandling.Ignore)]
public T Value { get; set; }
}
}