Add Master Data
This commit is contained in:
19
AMREZ.EOP.Domain/Entities/Customers/PersonProfile.cs
Normal file
19
AMREZ.EOP.Domain/Entities/Customers/PersonProfile.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using AMREZ.EOP.Domain.Entities.Common;
|
||||
|
||||
namespace AMREZ.EOP.Domain.Entities.Customers;
|
||||
|
||||
public sealed class PersonProfile : BaseEntity
|
||||
{
|
||||
public Guid CustomerProfileId { get; set; }
|
||||
|
||||
public string? Prefix { get; set; }
|
||||
public string? FirstNameTh { get; set; }
|
||||
public string? LastNameTh { get; set; }
|
||||
public string? FirstNameEn { get; set; }
|
||||
public string? LastNameEn { get; set; }
|
||||
public DateTime? BirthDate { get; set; }
|
||||
public string? NationalId { get; set; }
|
||||
public string? PassportNo { get; set; }
|
||||
|
||||
public CustomerProfile Customer { get; set; } = default!;
|
||||
}
|
||||
Reference in New Issue
Block a user