Add Master Data
This commit is contained in:
17
AMREZ.EOP.Domain/Entities/Customers/OrganizationProfile.cs
Normal file
17
AMREZ.EOP.Domain/Entities/Customers/OrganizationProfile.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using AMREZ.EOP.Domain.Entities.Common;
|
||||
|
||||
namespace AMREZ.EOP.Domain.Entities.Customers;
|
||||
|
||||
public sealed class OrganizationProfile : BaseEntity
|
||||
{
|
||||
public Guid CustomerProfileId { get; set; }
|
||||
|
||||
public string LegalNameTh { get; set; } = default!;
|
||||
public string? LegalNameEn { get; set; }
|
||||
public string? RegistrationNo { get; set; }
|
||||
public string? TaxId13 { get; set; }
|
||||
public string? BranchCode { get; set; }
|
||||
public string? CompanyType { get; set; }
|
||||
|
||||
public CustomerProfile Customer { get; set; } = default!;
|
||||
}
|
||||
Reference in New Issue
Block a user