namespace ApplicationLayer.DataAccessingServices.VisaApplications.Models
{
    public class PastVisitModel
    {
        /// First day of 
        public DateTime StartDate { get; set; }
        /// Last day of 
        public DateTime EndDate { get; set; }
        /// Identifier of destination country of 
        public Guid DestinationCountryId { get; set; }
    }
}