Files
DP44/Common/DTS.CommonCore/.svn/pristine/e4/e42ad93347ac038feb6c3d5b0d40bd149ef01076.svn-base
2026-04-17 14:55:32 -04:00

23 lines
524 B
Plaintext

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
}
}