Files
DP44/Common/DTS.CommonCore/.svn/pristine/61/61592a286afb8da6b5fc49bd7d339ad0152c35ca.svn-base

17 lines
404 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 WindowAveragingType
{
[Description("Averaging")]
Averaging,
[Description("Peak Hold MAX")]
PeakHoldMax,
[Description("Peak Hold MIN")]
PeakHoldMin,
}
}