From 3c1758094185233ebc9abd6f8eeca7164ebd81a6 Mon Sep 17 00:00:00 2001 From: prtsie Date: Tue, 13 Aug 2024 22:01:14 +0300 Subject: [PATCH] Added passport to applicant which didn't have it because I'm dumb --- SchengenVisaApi/Domains/ApplicantDomain/Applicant.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SchengenVisaApi/Domains/ApplicantDomain/Applicant.cs b/SchengenVisaApi/Domains/ApplicantDomain/Applicant.cs index 21c3e5f..9f95507 100644 --- a/SchengenVisaApi/Domains/ApplicantDomain/Applicant.cs +++ b/SchengenVisaApi/Domains/ApplicantDomain/Applicant.cs @@ -11,6 +11,9 @@ namespace Domains.ApplicantDomain /// Full name of the public Name Name { get; set; } = null!; + /// Passport of + public Passport Passport { get; set; } + /// Date of birth of the public DateOnly BirthDate { get; set; }