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