Files
Disco/Disco.Web/Models/Job/IndexModel.cs
T
Gary Sharp 3f63281dc4 Feature: Job Queues
Also UI style, theme and element changes
2014-02-03 14:50:08 +11:00

17 lines
475 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 LongRunningJobs { get; set; }
public List<Disco.Models.BI.Job.Statistics.DailyOpenedClosedItem> DailyOpenedClosedStatistics { get; set; }
}
}