using System.Runtime.Serialization; namespace RevolvingCow.Highcharts { /// /// Highchart label item. /// [DataContract] public class HighchartLabelItem { /// /// Gets or sets the HTML. /// [DataMember(Name = "html", EmitDefaultValue = false, IsRequired = false)] public string Html { get; set; } /// /// Gets or sets the CSS style. /// [DataMember(Name = "style", EmitDefaultValue = false, IsRequired = false)] public string Style { get; set; } } }