a819d2722a
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.
11 lines
234 B
C#
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; }
|
|
}
|
|
}
|