using Neo.LegitimateLicences.Common.ViewModels; using Neo.LegitimateLicences.Data.Models; using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Neo.LegitimateLicences.Applications { public class InspectionModel : ResponsiveAppBaseModel { public string ViewName {get; set; } public List Inspectors { get; set; } public List ScheduledInspections { get; set; } public List UnScheduledApplications { get; set; } public List AllApplications { get; set; } } }