using Domains.ApplicantDomain;
namespace Domains.VisaApplicationDomain
{
/// Visit in a Schengen country that already had
public class PastVisit : IEntity
{
/// Unique identifier of
public Guid Id { get; private set; } = Guid.NewGuid();
/// First day of
public DateOnly StartDate { get; set; }
/// Last day of
public DateOnly EndDate { get; set; }
}
}