Files
Disco/Disco.Models/Services/Interop/ActiveDirectory/ADManagedGroupConfiguration.cs
Gary Sharp a819d2722a Feature #49: Active Directory Managed Groups
Document Template Attachments, Device Batches, Device Profiles and User
Flags can be associated with an Active Directory group. This AD group is
then automatically synchronized with relevant User/Machine accounts.
Contains various other UI tweaks and configuration enhancements.
2014-06-16 22:21:31 +10:00

11 lines
234 B
C#

using System;
namespace Disco.Models.Services.Interop.ActiveDirectory
{
public class ADManagedGroupConfiguration
{
public string GroupId { get; set; }
public DateTime? FilterBeginDate { get; set; }
}
}