namespace Domains.VisaApplicationDomain;
/// Permission to enter a country the issuer wants to come from
/// Owned
public class ReentryPermit
{
/// Number of
public string Number { get; set; } = null!;
/// Date when expires
public DateTime ExpirationDate { get; set; }
}