using Domains.ApplicantDomain; using Domains.LocationDomain; 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 Country DestinationCountry { get; set; } = null!; }