19 lines
512 B
C#
19 lines
512 B
C#
|
|
using DTS.Common.Converters;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
|
|||
|
|
namespace DTS.Common.Enums.Hardware
|
|||
|
|
{
|
|||
|
|
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
|
|||
|
|
public enum SLICEPROSIMConfigurations
|
|||
|
|
{
|
|||
|
|
[Description("SLICE_CONFIGURATION_MEGA")]
|
|||
|
|
MEGA,
|
|||
|
|
[Description("SLICE_CONFIGURATION_800K")]
|
|||
|
|
EIGHT_HUNDRED,
|
|||
|
|
[Description("SLICE_CONFIGURATION_700K")]
|
|||
|
|
SEVEN_HUNDRED,
|
|||
|
|
[Description("SLICE_CONFIGURATION_600K")]
|
|||
|
|
SIX_HUNDRED
|
|||
|
|
}
|
|||
|
|
}
|