namespace Nop.Core.Domain.Discounts; public abstract partial class DiscountMapping : BaseEntity { /// /// Gets the entity identifier /// public new int Id { get; } /// /// Gets or sets the discount identifier /// public int DiscountId { get; set; } /// /// Gets or sets the entity identifier /// public abstract int EntityId { get; set; } }