15 lines
360 B
C#
15 lines
360 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Disco.BI.Interop.ActiveDirectory
|
|
{
|
|
public class ActiveDirectoryOrganisationalUnit
|
|
{
|
|
public string Name { get; set; }
|
|
public string Path { get; set; }
|
|
public List<ActiveDirectoryOrganisationalUnit> Children { get; set; }
|
|
}
|
|
}
|