namespace EnVisage.Models { using System; using System.Collections.Generic; using System.Web.Mvc; public class SupplyDemandReportFilterRequestModel { public List Statuses { get; set; } = new List(); public List Clients { get; set; } = new List(); public List Projects { get; set; } = new List(); } public class SupplyDemandReportFilterResponseModel { public List Clients { get; set; } = new List(); public List Projects { get; set; } = new List(); public List Teams { get; set; } = new List(); } public class SupplyDemandReportRequestModel { public List Statuses { get; set; } = new List(); public List Clients { get; set; } = new List(); public List Projects { get; set; } = new List(); public List Teams { get; set; } = new List(); public DateTime? StartDate { get; set; } public DateTime? EndDate { get; set; } } }