Files
DP44/Common/DTS.CommonCore/Enums/MigrationResult.cs
2026-04-17 14:55:32 -04:00

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