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.
20 lines
733 B
C#
20 lines
733 B
C#
using Disco.Models.UI.Config.UserFlag;
|
|
using Disco.Services.Users.UserFlags;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Disco.Web.Areas.Config.Models.UserFlag
|
|
{
|
|
public class ShowModel : ConfigUserFlagShowModel
|
|
{
|
|
public Disco.Models.Repository.UserFlag UserFlag { get; set; }
|
|
|
|
public int CurrentAssignmentCount { get; set; }
|
|
public int TotalAssignmentCount { get; set; }
|
|
|
|
public UserFlagUsersManagedGroup UsersLinkedGroup { get; set; }
|
|
public UserFlagUserDevicesManagedGroup UserDevicesLinkedGroup { get; set; }
|
|
|
|
public IEnumerable<KeyValuePair<string, string>> Icons { get; set; }
|
|
public IEnumerable<KeyValuePair<string, string>> ThemeColours { get; set; }
|
|
}
|
|
} |