3e57af394d
custom details (such as those from the UserDetails plugin) can now be more deeply integrated throughtout the system
29 lines
978 B
C#
29 lines
978 B
C#
using Disco.Models.BI.Config;
|
|
using Disco.Models.Services.Documents;
|
|
using Disco.Models.Services.Jobs.JobLists;
|
|
using Disco.Models.Services.Plugins.Details;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Disco.Models.UI.Device
|
|
{
|
|
public interface DeviceShowModel : BaseUIModel
|
|
{
|
|
Repository.Device Device { get; set; }
|
|
|
|
List<Repository.DeviceProfile> DeviceProfiles { get; set; }
|
|
OrganisationAddress DeviceProfileDefaultOrganisationAddress { get; set; }
|
|
|
|
List<Repository.DeviceBatch> DeviceBatches { get; set; }
|
|
|
|
JobTableModel Jobs { get; set; }
|
|
|
|
List<Repository.DeviceCertificate> Certificates { get; set; }
|
|
|
|
List<Repository.DocumentTemplate> DocumentTemplates { get; set; }
|
|
List<DocumentTemplatePackage> DocumentTemplatePackages { get; set; }
|
|
DetailsResult DeviceDetails { get; set; }
|
|
DetailsResult AssignedUserDetails { get; set; }
|
|
bool HasAssignedUserPhoto { get; set; }
|
|
}
|
|
}
|