using System; namespace SalesCatalog.Model { public class RadioButton:FormInput { public RadioButton () { } public string Choice { get; set; } public override string ToHtml () { return string.Format ("", Id,Name,Choice); } } }