Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

CustomerAddressMapping.cs

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; }
}