namespace Nop.Core.Domain.Customers; /// /// Represents a customer-address mapping class /// public partial class CustomerAddressMapping : BaseEntity { /// /// Gets or sets the customer identifier /// public int CustomerId { get; set; } /// /// Gets or sets the address identifier /// public int AddressId { get; set; } }