using System.Collections.Generic; using Neo.Legitimate.Data.Models; namespace Neo.Legitimate.OperatingLicences.Models { public class IssueModel { public long AwaitingDocumentsCount { get; set; } public long FinalVerificationCount { get; set; } public List AwaitingDocuments { get; set; } public List FinalVerification { get; set; } } }