This commit is contained in:
2024-08-12 17:38:02 +03:00
parent 14f9092f63
commit 5db1d1b1c5
22 changed files with 316 additions and 55 deletions

View File

@@ -0,0 +1,21 @@
namespace Domains.ApplicantDomain
{
/// Model of passport
public class Passport : IEntity
{
/// Unique identifier of <see cref="Passport"/>
public Guid Id { get; set; } = Guid.NewGuid();
/// Number of <see cref="Passport"/>
public string Number { get; set; }
/// Issuing authority of <see cref="Passport"/>
public string Issuer { get; set; }
/// Date of issue
public DateOnly IssueDate { get; set; }
/// Date when the <see cref="Passport"/> expires
public DateOnly ExpirationDate { get; set; }
}
}