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

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