using System; namespace Yavsc.Model.FrontOffice.Catalog { /// /// Form element. /// public abstract class FormElement { /// /// Tos the html. /// /// The html. public abstract string ToHtml (); } }