Files
Disco/Disco.Web/Models/Job/ListModel.cs
T
2013-02-01 12:35:28 +11:00

21 lines
473 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Disco.Web.Models.Job
{
public class ListModel
{
public string Title { get; set; }
public Disco.Models.BI.Job.JobTableModel JobTable { get; set; }
public string PageTitle
{
get
{
return string.Format("{0} ({1})", Title, JobTable.Items.Count);
}
}
}
}