db73cc1a12
AD Interop moved to Disco.Services; Supports multi-domain environments, sites, and searching restricted with OUs.
16 lines
356 B
C#
16 lines
356 B
C#
|
|
namespace Disco.Models.Interop.ActiveDirectory
|
|
{
|
|
public interface IActiveDirectoryObject
|
|
{
|
|
string DistinguishedName { get; set; }
|
|
string SecurityIdentifier { get; set; }
|
|
|
|
string Domain { get; set; }
|
|
string SamAccountName { get; set; }
|
|
string NetBiosId { get; }
|
|
|
|
string Name { get; set; }
|
|
}
|
|
}
|