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 DateTime IssueDate { get; set; }
    /// Date when the  expires
    public DateTime ExpirationDate { get; set; }
}