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 RMLExtensionLevel { [Description("1")] One = 1, [Description("2")] Two = 2, [Description("3")] Three = 3, } }