namespace Domains.ApplicantDomain { /// Model of passport public class Passport : IEntity { /// Unique identifier of public Guid Id { get; set; } = Guid.NewGuid(); /// Number of public string Number { get; set; } /// Issuing authority of public string Issuer { get; set; } /// Date of issue public DateOnly IssueDate { get; set; } /// Date when the expires public DateOnly ExpirationDate { get; set; } } }