723eeec91e
Initially to make 'long running job threshold' configurable. Updates to ManagedJobList and fix for missing GetClaimKeys method (#24).
17 lines
450 B
C#
17 lines
450 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Disco.Models.UI.Job
|
|
{
|
|
public interface JobShowModel : BaseUIModel
|
|
{
|
|
Repository.Job Job { get; set; }
|
|
bool IsLongRunning { get; set; }
|
|
List<Repository.DocumentTemplate> AvailableDocumentTemplates { get; set; }
|
|
List<Repository.JobSubType> UpdatableJobSubTypes { get; set; }
|
|
}
|
|
}
|