db73cc1a12
AD Interop moved to Disco.Services; Supports multi-domain environments, sites, and searching restricted with OUs.
17 lines
414 B
C#
17 lines
414 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.DirectoryServices;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Disco.Models.Interop.ActiveDirectory
|
|
{
|
|
public class ActiveDirectorySearchResult
|
|
{
|
|
public ActiveDirectoryDomain Domain { get; set; }
|
|
public string SearchRoot { get; set; }
|
|
public SearchResult Result { get; set; }
|
|
}
|
|
}
|