using System; namespace Yavsc.Model.FrontOffice { /// /// Option. /// public class Option : FormElement { /// /// Initializes a new instance of the class. /// public Option () { } /// /// Gets or sets the value. /// /// The value. public string Value { get; set; } /// /// Gets or sets the text. /// /// The text. public string Text { get; set; } /// /// Tos the html. /// /// The html. public override string ToHtml () { return string.Format ("\n",Value,Text); } } }