19503366c4
More information about device membership in Batches, Profiles and Models.
24 lines
803 B
C#
24 lines
803 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
using Disco.Services.Plugins;
|
|
using Disco.Models.UI.Config.DeviceProfile;
|
|
|
|
namespace Disco.Web.Areas.Config.Models.DeviceProfile
|
|
{
|
|
public class ShowModel : ConfigDeviceProfileShowModel
|
|
{
|
|
public Disco.Models.Repository.DeviceProfile DeviceProfile { get; set; }
|
|
public List<SelectListItem> DeviceProfileDistributionTypes { get; set; }
|
|
public List<Disco.Models.BI.Config.OrganisationAddress> OrganisationAddresses { get; set; }
|
|
|
|
public List<PluginFeatureManifest> CertificateProviders { get; set; }
|
|
|
|
public int DeviceCount { get; set; }
|
|
public int DeviceDecommissionedCount { get; set; }
|
|
|
|
public bool CanDelete { get; set; }
|
|
}
|
|
} |