using System.Runtime.Serialization; namespace RevolvingCow.Highcharts { /// /// Highchart series data marker. /// [DataContract] public class HighchartSeriesDataMarker : HighchartState { /// /// Gets or sets the states. /// [DataMember(Name = "states", EmitDefaultValue = false, IsRequired = false)] public HighchartSeriesDataStates States { get; set; } /// /// Gets or sets the symbol. /// [DataMember(Name = "symbol", EmitDefaultValue = false, IsRequired = false)] public string Symbol { get; set; } } }