Files
schengen-visa/SchengenVisaApi/Domains/VisaApplicationDomain/ReentryPermit.cs
2024-08-12 17:38:02 +03:00

13 lines
399 B
C#

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; }
}
}