Files
schengen-visa/SchengenVisaApi/Domains/ApplicantDomain/Passport.cs
2024-08-12 17:38:02 +03:00

22 lines
601 B
C#

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; }
}
}