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