namespace DSInternals.Replication.Model { /// /// Identifies specific roles within a domain. /// public class ActiveDirectoryRoleInformation { /// /// Gets or sets the server with the infrastructure role. /// public string InfrastructureMaster { get; set; } /// /// Gets or sets the server with the domain naming master role. /// public string DomainNamingMaster { get; set; } /// /// Gets or sets the server with the primary domain controller (PDC) emulator role. /// public string PdcEmulator { get; set; } /// /// Gets or sets the server with the relative identifier (RID) master role. /// public string RidMaster { get; set; } /// /// Gets or sets the server with the schema master role. /// public string SchemaMaster { get; set; } } }