using System.Collections.Generic; using Neo.Legitimate.Data.Models; namespace Neo.Legitimate.OperatingLicences.Models { public class ExpiriesModel { 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; } } }