Files
schengen-visa/Domains/VisaApplicationDomain/ReentryPermit.cs
2025-10-05 14:32:06 +03:00

12 lines
366 B
C#

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