using System; namespace SalesCatalog.Model { public class CheckBox : FormInput { public CheckBox () { } public bool Value { get; set; } public override string ToHtml () { return string.Format ("", Id,Name,Value?"checked":""); } } }