Changed models, added Application layer models

This commit is contained in:
2024-08-15 14:54:23 +03:00
parent 1d8405b4ec
commit c1a4acf414
50 changed files with 628 additions and 647 deletions

View File

@@ -1,19 +1,18 @@
namespace Domains.ApplicantDomain
namespace Domains.ApplicantDomain;
/// Model of passport
/// <remarks>Owned</remarks>
public class Passport
{
/// Model of passport
/// <remarks>Owned</remarks>
public class Passport
{
/// Number of <see cref="Passport"/>
public string Number { get; set; } = null!;
/// Number of <see cref="Passport"/>
public string Number { get; set; } = null!;
/// Issuing authority of <see cref="Passport"/>
public string Issuer { get; set; } = null!;
/// Issuing authority of <see cref="Passport"/>
public string Issuer { get; set; } = null!;
/// Date of issue
public DateTime IssueDate { get; set; }
/// Date of issue
public DateTime IssueDate { get; set; }
/// Date when the <see cref="Passport"/> expires
public DateTime ExpirationDate { get; set; }
}
}
/// Date when the <see cref="Passport"/> expires
public DateTime ExpirationDate { get; set; }
}