namespace Domains.VisaApplicationDomain
{
    /// Permission to enter a country the issuer wants to come from
    public class ReentryPermit : IEntity
    {
        /// Unique identifier of 
        public Guid Id { get; private set; } = Guid.NewGuid();
        /// Date when  expires
        public DateOnly ExpirationDate { get; set; }
    }
}