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

14 lines
389 B
C#

namespace Domains.VisaApplicationDomain
{
/// Permission to enter the destination country
/// <remarks>Owned</remarks>
public class PermissionToDestCountry
{
/// Date when <see cref="PermissionToDestCountry"/> expires
public DateOnly ExpirationDate { get; set; }
/// Issuing authority
public string Issuer { get; set; } = null!;
}
}