e984221c95
User Attachments updated in the DataStore to reflect new UserId (which includes the domain); AD Groups were using DnsName instead of NetBiosName.
17 lines
392 B
C#
17 lines
392 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; }
|
|
string DisplayName { get; }
|
|
}
|
|
}
|