using System; namespace Yavsc.Model.FrontOffice.Catalog { /// /// Label. /// public class Label:FormElement { /// /// Initializes a new instance of the class. /// public Label () { } string Text { get; set; } string For { get; set ; } /// /// Tos the html. /// /// The html. public override string ToHtml () { return string.Format ("", For, Text); } } }