Try your search with a different keyword or use * as a wildcard.
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; }
}