using System; namespace Yavsc.Model.FrontOffice.Catalog { /// /// Text. /// public class Text: FormElement { /// /// Gets or sets the value. /// /// The value. public string Val { get; set; } /// /// Tos the html. /// /// The html. public override string ToHtml () { return Val; } } }