using System.Collections.Generic; using System.Runtime.Serialization; namespace RevolvingCow.Highcharts { /// /// Highchart labels. /// [DataContract] public class HighchartLabels { /// /// Gets or sets the items. /// [DataMember(Name = "items", EmitDefaultValue = false, IsRequired = false)] public IEnumerable Items { get; set; } /// /// Gets or sets the CSS style. /// [DataMember(Name = "style", EmitDefaultValue = false, IsRequired = false)] public string Style { get; set; } } }