using System; namespace Yavsc.Model.FrontOffice { public class Label:FormElement { public Label () { } string Text { get; set; } string For { get; set ; } public override string ToHtml () { return string.Format ("", For, Text); } } }