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