Files
Disco/Disco.Web/Areas/Config/Models/Shared/LinkedGroupModel.cs
T
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

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; }
}
}