using System.Runtime.Serialization; namespace RevolvingCow.Highcharts { /// /// Highchart credits. /// [DataContract] public class HighchartCredits { /// /// Gets or sets a value indicating whether the credits are enabled. /// [DataMember(Name = "enabled", EmitDefaultValue = false, IsRequired = false)] public bool Enabled { get; set; } /// /// Gets or sets the hyperlink reference. /// [DataMember(Name = "href", EmitDefaultValue = false, IsRequired = false)] public string Href { get; set; } /// /// Gets or sets the position. /// [DataMember(Name = "position", EmitDefaultValue = false, IsRequired = false)] public string Position { get; set; } /// /// 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; } } }