using System; namespace Yavsc.Model.FrontOffice { /// /// Files input. /// public class FilesInput : FormInput { #region implemented abstract members of FormInput /// /// Gets the type. /// /// The type. public override string Type { get { return "file"; } } #endregion /// /// Initializes a new instance of the class. /// public FilesInput () { } /// /// Tos the html. /// /// The html. public override string ToHtml () { return string.Format ("", Id); } } }