using DTS.Common.Converters; using System.ComponentModel; namespace DTS.Common.Enums.Viewer.Reports { [TypeConverter(typeof(EnumDescriptionTypeConverter))] public enum WindowAveragingType { [Description("Averaging")] Averaging, [Description("Peak Hold MAX")] PeakHoldMax, [Description("Peak Hold MIN")] PeakHoldMin, } }