12 lines
253 B
Plaintext
12 lines
253 B
Plaintext
|
|
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
|
||
|
|
}
|
||
|
|
}
|