using DTS.Common.Converters; using System.ComponentModel; namespace DTS.Common.Enums.Viewer.Reports { [TypeConverter(typeof(EnumDescriptionTypeConverter))] public enum WindowType { [Description("Rectangle")] Rectangle, [Description("Hamming")] Hamming, [Description("Hanning")] Hanning, [Description("Blackman")] Blackman, [Description("Blackman-Harris")] BlackmanHarris, [Description("Flat Top")] FlatTop } }