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 DateTime StartDate { get; set; } /// Last day of public DateTime EndDate { get; set; } } }