mirror of
https://github.com/MichaelGrafnetter/DSInternals
synced 2025-01-08 07:00:17 +00:00
15 lines
289 B
C#
15 lines
289 B
C#
using System;
|
|
|
|
namespace DSInternals.DataStore
|
|
{
|
|
[Flags]
|
|
public enum DomainControllerOptions : int
|
|
{
|
|
None = 0,
|
|
GlobalCatalog = 1,
|
|
DisableInboundReplication = 2,
|
|
DisableOutboundReplication = 4,
|
|
DisableConnectionTranslation = 8
|
|
}
|
|
}
|