using System.Runtime.Serialization; namespace RevolvingCow.Highcharts { /// /// Highchart plot band. /// [DataContract] public class HighchartPlotBand { /// /// Gets or sets the color. /// [DataMember(Name = "color", EmitDefaultValue = false, IsRequired = false)] public string Color { get; set; } /// /// Gets or sets the events. /// [DataMember(Name = "events", EmitDefaultValue = false, IsRequired = false)] public string Events { get; set; } /// /// Gets or sets the from value. /// [DataMember(Name = "from", EmitDefaultValue = false, IsRequired = false)] public int From { get; set; } /// /// Gets or sets the identifier. /// [DataMember(Name = "id", EmitDefaultValue = false, IsRequired = false)] public string Id { get; set; } /// /// Gets or sets the label. /// [DataMember(Name = "label", EmitDefaultValue = false, IsRequired = false)] public HighchartLabel Label { get; set; } /// /// Gets or sets the to value. /// [DataMember(Name = "to", EmitDefaultValue = false, IsRequired = false)] public int To { get; set; } /// /// Gets or sets the z-index. /// [DataMember(Name = "zIndex", EmitDefaultValue = false, IsRequired = false)] public int ZIndex { get; set; } } }