Added passport to applicant which didn't have it because I'm dumb

This commit is contained in:
2024-08-13 22:01:14 +03:00
parent 987cf26f7b
commit 3c17580941

View File

@@ -11,6 +11,9 @@ namespace Domains.ApplicantDomain
/// Full name of the <see cref="Applicant"/> /// Full name of the <see cref="Applicant"/>
public Name Name { get; set; } = null!; public Name Name { get; set; } = null!;
/// Passport of <see cref="Applicant"/>
public Passport Passport { get; set; }
/// Date of birth of the <see cref="Applicant"/> /// Date of birth of the <see cref="Applicant"/>
public DateOnly BirthDate { get; set; } public DateOnly BirthDate { get; set; }