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