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