Files
amrez-nova-eop-services-api/AMREZ.EOP.Domain/Entities/Customers/CustomerAddress.cs
Thanakarn Klangkasame d4ab1cb592 Add Master Data
2025-10-10 16:22:06 +07:00

15 lines
516 B
C#

using AMREZ.EOP.Domain.Entities.Common;
using AMREZ.EOP.Domain.Shared.Customer;
namespace AMREZ.EOP.Domain.Entities.Customers;
public sealed class CustomerAddress : BaseEntity
{
public Guid CustomerProfileId { get; set; }
public Guid AddressId { get; set; }
public AddressLabel Label { get; set; }
public bool IsDefault { get; set; }
public CustomerProfile Customer { get; set; } = default!;
public Address Address { get; set; } = default!;
}