This commit is contained in:
2024-08-12 17:38:02 +03:00
parent 14f9092f63
commit 5db1d1b1c5
22 changed files with 316 additions and 55 deletions

View File

@@ -0,0 +1,12 @@
namespace Domains.VisaApplicationDomain
{
/// Permission to enter a country the issuer wants to come from
public class ReentryPermit : IEntity
{
/// Unique identifier of <see cref="PastVisa"/>
public Guid Id { get; private set; } = Guid.NewGuid();
/// Date when <see cref="ReentryPermit"/> expires
public DateOnly ExpirationDate { get; set; }
}
}