15 lines
516 B
C#
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!;
|
|
} |