12 lines
243 B
Plaintext
12 lines
243 B
Plaintext
|
|
using System.ComponentModel;
|
||
|
|
using DTS.Common.Converters;
|
||
|
|
|
||
|
|
namespace DTS.Common.Enums
|
||
|
|
{
|
||
|
|
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
|
||
|
|
public enum ScriptTypes
|
||
|
|
{
|
||
|
|
Migration,
|
||
|
|
Initialization
|
||
|
|
}
|
||
|
|
}
|