namespace DSInternals.Replication.Model { /// /// Contains miscellaneous data for a server. /// public class DomainControllerInformation { /// /// Name of the account object for the domain controller (DC). /// public string ServerReference { get; set; } /// /// DNS host name of the DC. /// public string DNSHostName { get; set; } /// /// NTDS Settings object for the domain controller (DC). /// public string DsaObject { get; set; } } }