using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Everest.Forms.ExtForm.Controls{ public class DownloadableFile : File { public override string Name { get { return "DownloadFile"; } } protected override string XType { get { return "downloadablefile"; } } } }