using System.Runtime.Serialization; namespace RevolvingCow.Highcharts { /// /// Highchart legend title. /// [DataContract] public class HighchartLegendTitle { /// /// Gets or sets the CSS style. /// [DataMember(Name = "style", EmitDefaultValue = false, IsRequired = false)] public string Style { get; set; } /// /// Gets or sets the text. /// [DataMember(Name = "text", EmitDefaultValue = false, IsRequired = false)] public string Text { get; set; } } }