Files
DP44/Common/DTS.CommonCore/.svn/pristine/b5/b5cf85e65fc1fbd167e3f7de60c066ba11f384a9.svn-base

16 lines
409 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using System.ComponentModel;
using DTS.Common.Converters;
namespace DTS.Common.Enums.TestSetups
{
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
public enum RealtimeGraphsEnum
{
[Description("RealtimeGraphs_One")]
One = 1,
[Description("RealtimeGraphs_Three")]
Three = 3,
[Description("RealtimeGraphs_Six")]
Six = 6
}
}