using System.Collections.Generic; using Neo.LegitimateLicences.Common.ViewModels; using Neo.LegitimateLicences.Data.Models; using Neo.Afx.Admin.Security; namespace Neo.LegitimateLicences.Admin { public class InspectorsModel : ResponsiveAppBaseModel { public IEnumerable Inspectors { get; set; } public Inspector Inspector { get; set; } public string Name { get; set; } public long InspectorID { get; set; } public long OfficeLocationID { get; set; } public bool IsCancelled { get; set; } public object Lookups; } }