14 lines
294 B
C#
14 lines
294 B
C#
using System.ComponentModel;
|
|
using DTS.Common.Converters;
|
|
|
|
namespace DTS.Common.Enums
|
|
{
|
|
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
|
|
public enum MigrationResult
|
|
{
|
|
OK,
|
|
ExceptionThrown,
|
|
WarningAllowStreamingModesWasNotMigrated
|
|
}
|
|
}
|