3e57af394d
custom details (such as those from the UserDetails plugin) can now be more deeply integrated throughtout the system
26 lines
948 B
C#
26 lines
948 B
C#
using Disco.Models.Services.Documents;
|
|
using Disco.Models.Services.Job;
|
|
using Disco.Models.Services.Jobs.JobLists;
|
|
using Disco.Models.Services.Plugins.Details;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Disco.Models.UI.Job
|
|
{
|
|
public interface JobShowModel : BaseUIModel
|
|
{
|
|
Repository.Job Job { get; set; }
|
|
TimeSpan? LongRunning { get; set; }
|
|
List<Repository.DocumentTemplate> AvailableDocumentTemplates { get; set; }
|
|
List<DocumentTemplatePackage> AvailableDocumentTemplatePackages { get; set; }
|
|
List<Repository.JobSubType> UpdatableJobSubTypes { get; set; }
|
|
List<Repository.JobQueue> AvailableQueues { get; set; }
|
|
|
|
LocationModes LocationMode { get; set; }
|
|
List<JobLocationReference> LocationOptions { get; set; }
|
|
DetailsResult UserDetails { get; set; }
|
|
bool HasUserPhoto { get; set; }
|
|
DetailsResult DeviceDetails { get; set; }
|
|
}
|
|
}
|