12 lines
294 B
C#
12 lines
294 B
C#
using System;
|
|
|
|
namespace Disco.Models.Services.Interop.ActiveDirectory
|
|
{
|
|
public class ADManagedGroupConfiguration
|
|
{
|
|
public string GroupId { get; set; }
|
|
public DateTime? FilterBeginDate { get; set; }
|
|
public bool UpdateDescription { get; set; } = true;
|
|
}
|
|
}
|