12 lines
253 B
C#
12 lines
253 B
C#
namespace DTS.Common.Enums
|
|
{
|
|
//FB 44625 used to specify the options Yes, No buttons ot NotSet which means
|
|
//none of the Yes/No selected
|
|
public enum DestructiveTestChoices
|
|
{
|
|
Yes,
|
|
No,
|
|
NotSet
|
|
}
|
|
}
|