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.
16 lines
411 B
C#
16 lines
411 B
C#
using Disco.Services.Interop.ActiveDirectory;
|
|
|
|
namespace Disco.Web.Areas.Config.Models.Shared
|
|
{
|
|
public class LinkedGroupModel
|
|
{
|
|
public bool CanConfigure { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
public string CategoryDescription { get; set; }
|
|
|
|
public string UpdateUrl { get; set; }
|
|
|
|
public ADManagedGroup ManagedGroup { get; set; }
|
|
}
|
|
} |