using System.Collections.Generic; using Neo.Legitimate.Data.Models; namespace Neo.Legitimate.OperatingLicences.Models { public class PurificationModel { public long BypassedCount { get; set; } public long MissingOriginatingLicences { get; set; } public List LicencesWithExceptions { get; set; } public int LicencesLinkedToActiveOlasCount { get; set; } public long AllowedNewLicenceCount { get; set; } } }