Files
Disco/Disco.Models/UI/Job/JobShowModel.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

22 lines
765 B
C#

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