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.
23 lines
913 B
C#
23 lines
913 B
C#
using Disco.Models.UI.Config.DeviceBatch;
|
|
using Disco.Services.Devices.ManagedGroups;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Disco.Web.Areas.Config.Models.DeviceBatch
|
|
{
|
|
public class ShowModel : ConfigDeviceBatchShowModel
|
|
{
|
|
public Disco.Models.Repository.DeviceBatch DeviceBatch { get; set; }
|
|
|
|
public Disco.Models.Repository.DeviceModel DefaultDeviceModel { get; set; }
|
|
|
|
public List<Disco.Models.Repository.DeviceModel> DeviceModels { get; set; }
|
|
public List<ConfigDeviceBatchShowModelMembership> DeviceModelMembers { get; set; }
|
|
|
|
public DeviceBatchAssignedUsersManagedGroup AssignedUsersLinkedGroup { get; set; }
|
|
public DeviceBatchDevicesManagedGroup DevicesLinkedGroup { get; set; }
|
|
|
|
public int DeviceCount { get; set; }
|
|
public int DeviceDecommissionedCount { get; set; }
|
|
public bool CanDelete { get; set; }
|
|
}
|
|
} |