namespace Domains.ApplicantDomain
{
    /// Model of passport
    /// Owned
    public class Passport
    {
        /// Number of 
        public string Number { get; set; } = null!;
        /// Issuing authority of 
        public string Issuer { get; set; } = null!;
        /// Date of issue
        public DateOnly IssueDate { get; set; }
        /// Date when the  expires
        public DateOnly ExpirationDate { get; set; }
    }
}