68256d7abd
Stale Jobs replaces Long-Running Jobs on the homepage. Last Activity is added to the job table.
17 lines
469 B
C#
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; }
|
|
}
|
|
} |