using System.Runtime.Serialization; namespace RevolvingCow.Highcharts { /// /// Highchart loading. /// [DataContract] public class HighchartLoading { /// /// Gets or sets the hide duration. /// [DataMember(Name = "hideDuration", EmitDefaultValue = false, IsRequired = false)] public int HideDuration { get; set; } /// /// Gets or sets the label style. /// [DataMember(Name = "labelStyle", EmitDefaultValue = false, IsRequired = false)] public string LabelStyle { get; set; } /// /// Gets or sets the show duration. /// [DataMember(Name = "showDuration", EmitDefaultValue = false, IsRequired = false)] public int ShowDuration { get; set; } /// /// Gets or sets the CSS style. /// [DataMember(Name = "style", EmitDefaultValue = false, IsRequired = false)] public string Style { get; set; } } }