using Domains.ApplicantDomain;
namespace Domains.VisaApplicationDomain;
/// Visit in a Schengen country that  already had
/// Owned
public class PastVisit
{
    /// First day of 
    public DateTime StartDate { get; set; }
    /// Last day of 
    public DateTime EndDate { get; set; }
    /// Destination country of 
    public string DestinationCountry { get; set; } = null!;
}