using Newtonsoft.Json; namespace PepperDash.Essentials.AppServer { /// /// Represents a MobileControlSimpleContent /// public class MobileControlSimpleContent { [JsonProperty("value", NullValueHandling = NullValueHandling.Ignore)] /// /// Gets or sets the Value /// public T Value { get; set; } } }