using Disco.Models.Repository; using Disco.Models.Services.Exporting; using Disco.Models.Services.Jobs.Exporting; using System.Collections.Generic; namespace Disco.Models.UI.Job { public interface JobExportModel : BaseUIModel { JobExportOptions Options { get; set; } string ExportSessionId { get; set; } ExportResult ExportSessionResult { get; set; } List JobQueues { get; set; } List> JobStatuses { get; set; } List JobTypes { get; set; } } }