Files
schengen-visa/SchengenVisaApi/ApplicationLayer/Services/VisaApplications/Models/PastVisitModel.cs
2024-08-19 22:25:08 +03:00

15 lines
447 B
C#

namespace ApplicationLayer.Services.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; }
}
}