using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.FSE.Common.HotFolder { public enum HotFolderItemStatus { [Description("Pending")] Pending, [Description("Uploading")] Uploading, [Description("Completed")] Completed, [Description("Failed")] Failed, [Description("Completed with error")] CompletedWithError, } }