Files
Disco/Disco.Web/Models/Job/IndexModel.cs
T
Gary Sharp 68256d7abd Feature #37: Stale Jobs
Stale Jobs replaces Long-Running Jobs on the homepage. Last Activity is
added to the job table.
2014-02-13 22:17:49 +11:00

17 lines
469 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Disco.Models.UI.Job;
using Disco.Models.Services.Jobs.JobLists;
namespace Disco.Web.Models.Job
{
public class IndexModel : JobIndexModel
{
public JobTableModel MyJobs { get; set; }
public JobTableModel StaleJobs { get; set; }
public List<Disco.Models.BI.Job.Statistics.DailyOpenedClosedItem> DailyOpenedClosedStatistics { get; set; }
}
}