Files
DP44/Common/DTS.CommonCore/.svn/pristine/67/673ea0fc8c6ecdbb9410f93ecff1444991880d1d.svn-base

19 lines
520 B
Plaintext
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
using DTS.Common.Converters;
using System.ComponentModel;
namespace DTS.Common.Enums.Viewer.Reports
{
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
public enum PassFilterType
{
[Description("Bessel")]
Bessel,
[Description("Butterworth")]
Butterworth,
[Description("Chebyshev")]
Chebyshev,
//[Description("Critical Damping")] // REMOVE THIS HACK / uncomment when implemented in exocortex
//CriticalDamping,
}
}