using Domains.VisaApplicationDomain;
namespace ApplicationLayer.Services.VisaApplications.Models
{
    /// Model of  with only identifier of country
    public class PastVisitModelForRequest
    {
        /// 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; }
    }
}