Files
Disco/Disco.Models/UI/Device/DeviceShowModel.cs
T
Gary Sharp aca037ecf8 Feature: Document Template Packages
Document Templates can be grouped into a package and generated on-demand
in the same was as individual document templates. Packages can be
generated in bulk.
2016-11-14 01:21:23 +11:00

25 lines
779 B
C#

using Disco.Models.BI.Config;
using Disco.Models.Services.Documents;
using Disco.Models.Services.Jobs.JobLists;
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; }
}
}