25 lines
648 B
C#
25 lines
648 B
C#
using System.ComponentModel;
|
|
using DTS.Common.Converters;
|
|
|
|
namespace DTS.Common.Enums.DASFactory
|
|
{
|
|
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
|
|
public enum UseCasesTSRAIR : byte
|
|
{
|
|
[Description("Aerospace")]
|
|
AEROSPACE,
|
|
[Description("Aerospace with motion")]
|
|
AEROSPACE_with_motion,
|
|
[Description("Vibration")]
|
|
VIBRATION,
|
|
[Description("Scheduled")]
|
|
SCHEDULED,
|
|
[Description("Interval")]
|
|
INTERVAL,
|
|
[Description("Streaming")]
|
|
STREAMING,
|
|
[Description("Pretrigger test")]
|
|
PRETRIGGER_TEST,
|
|
}
|
|
}
|