using Domains.VisaApplicationDomain;
namespace ApplicationLayer.Services.VisaApplications.Models
{
/// Model of with only name of the destination country
public class PastVisitModel
{
///
public DateTime StartDate { get; set; }
///
public DateTime EndDate { get; set; }
///
public string DestinationCountry { get; set; } = null!;
}
}