Webiant Logo Webiant Logo
  1. No results found.

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

DiscountMapping.cs

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