using System; namespace Yavsc.Model.FrontOffice { /// /// Radio button. /// public class RadioButton:FormInput { #region implemented abstract members of FormInput /// /// Gets the type. /// /// The type. public override string Type { get { return "radio"; } } #endregion /// /// Initializes a new instance of the class. /// public RadioButton () { } /// /// Gets or sets the choice. /// /// The choice. public string Choice { get; set; } /// /// Tos the html. /// /// The html. public override string ToHtml () { return string.Format ("", Id,Name,Choice); } } }