using Neo.LegitimateLicences.Common.ViewModels; using Neo.LegitimateLicences.Data.Models; using System; using System.Collections.Generic; using System.Linq; using System.Web; using Neo.Afx.Services.Integration; using Neo.Afx.ViewModels; namespace Neo.LegitimateLicences.OperatingLicences { public class ExpiriesModel : ResponsiveAppBaseModel { public long OverdueUpliftmentsCount { get; set; } public long UpcomingExpiriesCount { get; set; } public long ExpiredLicencesCount { get; set; } public IEnumerable OverdueUpliftments { get; set; } public IEnumerable UpcomingExpiries { get; set; } public IEnumerable ExpiredLicences { get; set; } } }