17 lines
237 B
C#
17 lines
237 B
C#
|
#region Using directives
|
|||
|
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
namespace System.Workflow.Activities
|
|||
|
{
|
|||
|
internal enum DirectoryQueryOperation
|
|||
|
{
|
|||
|
Equal,
|
|||
|
NotEqual,
|
|||
|
}
|
|||
|
}
|