23 lines
524 B
C#
23 lines
524 B
C#
using System.ComponentModel;
|
|
using DTS.Common.Converters;
|
|
|
|
namespace DTS.Common.Enums
|
|
{
|
|
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
|
|
public enum IncludeOverwriteName
|
|
{
|
|
IncludedCheckBox,
|
|
OverwriteCheckBox,
|
|
ImportingTestSetupName
|
|
}
|
|
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
|
|
public enum ExportChoices
|
|
{
|
|
ExportType,
|
|
UnfilteredEUCheckBox,
|
|
FilteredEUCheckBox,
|
|
MVCheckBox,
|
|
ADCCheckBox
|
|
}
|
|
}
|