16 lines
409 B
C#
16 lines
409 B
C#
|
|
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
|
|||
|
|
}
|
|||
|
|
}
|