26 lines
696 B
C#
26 lines
696 B
C#
using DTS.Common.Converters;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DTS.Common.Enums
|
|
{
|
|
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
|
|
public enum VelocityUnit
|
|
{
|
|
/// <summary>
|
|
/// kilometer per hour
|
|
/// </summary>
|
|
[Description("EditTestSetupObjectMeta_VelocityUnit_KilometerPerHour")]
|
|
KilometerPerHour = 0,
|
|
/// <summary>
|
|
/// meter per second
|
|
/// </summary>
|
|
[Description("EditTestSetupObjectMeta_VelocityUnit_MeterPerSecond")]
|
|
MeterPerSecond = 1
|
|
}
|
|
}
|