using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.BL.Enumerations { public enum RMLExtensionStatus { [Description("New")] New = 0, [Description("In Progress")] InProgress = 1, [Description("Completed")] Done = 2, } }