17 lines
404 B
Plaintext
17 lines
404 B
Plaintext
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,
|
|
}
|
|
}
|