Files
schengen-visa/SchengenVisaApi/ApplicationLayer/VisaApplications/Models/PastVisitModel.cs
2024-08-15 23:42:18 +03:00

15 lines
438 B
C#

namespace ApplicationLayer.VisaApplications.Models
{
public class PastVisitModel
{
/// First day of <see cref="PastVisitModel"/>
public DateTime StartDate { get; set; }
/// Last day of <see cref="PastVisitModel"/>
public DateTime EndDate { get; set; }
/// Identifier of destination country of <see cref="PastVisitModel"/>
public Guid DestinationCountryId { get; set; }
}
}