Files
2025-07-20 11:59:28 +10:00

20 lines
434 B
C#

using Disco.Models.Services.Jobs.JobLists;
using Disco.Models.UI.Job;
using System.Linq;
namespace Disco.Web.Models.Job
{
public class ListModel : JobListModel
{
public string Title { get; set; }
public JobTableModel JobTable { get; set; }
public string PageTitle
{
get
{
return $"{Title} ({JobTable.Items.Count()})";
}
}
}
}