17 lines
237 B
C#
Raw Normal View History

#region Using directives
using System;
using System.Collections.Generic;
using System.Text;
#endregion
namespace System.Workflow.Activities
{
internal enum DirectoryQueryOperation
{
Equal,
NotEqual,
}
}