using Disco.Models.Services.Jobs; using System.Collections.Generic; namespace Disco.Models.UI.Config.JobPreferences { public interface ConfigJobPreferencesIndexModel : BaseUIModel { int LongRunningJobDaysThreshold { get; set; } int StaleJobMinutesThreshold { get; set; } LocationModes LocationMode { get; set; } List LocationList { get; set; } string OnCreateExpression { get; set; } string OnCloseExpression { get; set; } List> LongRunningJobDaysThresholdOptions(); List> StaleJobMinutesThresholdOptions(); List> LocationModeOptions(); } }