using System.ComponentModel; using DTS.Common.Converters; namespace DTS.Common.Enums.TestSetups { [TypeConverter(typeof(EnumDescriptionTypeConverter))] public enum RealtimeGraphsEnum { [Description("RealtimeGraphs_One")] One = 1, [Description("RealtimeGraphs_Three")] Three = 3, [Description("RealtimeGraphs_Six")] Six = 6 } }