namespace Domains.VisaApplicationDomain;
/// Permission to enter the destination country
/// Owned
public class PermissionToDestCountry
{
/// Date when expires
public DateTime ExpirationDate { get; set; }
/// Issuing authority
public string Issuer { get; set; } = null!;
}