init
This commit is contained in:
25
Common/DTS.Common/Enums/VelocityUnit.cs
Normal file
25
Common/DTS.Common/Enums/VelocityUnit.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user