Feature #42: Active Directory Interop Upgrade
AD Interop moved to Disco.Services; Supports multi-domain environments, sites, and searching restricted with OUs.
This commit is contained in:
@@ -1,19 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Disco.Models.Interop.ActiveDirectory
|
||||
{
|
||||
public class ActiveDirectoryGroup : IActiveDirectoryObject
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public string DistinguishedName { get; set; }
|
||||
public string Domain { get; set; }
|
||||
public string SamAccountName { get; set; }
|
||||
|
||||
public string DistinguishedName { get; set; }
|
||||
public string SecurityIdentifier { get; set; }
|
||||
public string CommonName { get; set; }
|
||||
|
||||
public string Name { get; set; }
|
||||
|
||||
public List<string> MemberOf { get; set; }
|
||||
|
||||
public string NetBiosId { get { return string.Format(@"{0}\{1}", Domain, SamAccountName); } }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user