Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Catalog;
///
/// Represents a product manufacturer mapping
///
public partial class ProductManufacturer : BaseEntity
{
///
/// Gets or sets the product identifier
///
public int ProductId { get; set; }
///
/// Gets or sets the manufacturer identifier
///
public int ManufacturerId { get; set; }
///
/// Gets or sets a value indicating whether the product is featured
///
public bool IsFeaturedProduct { get; set; }
///
/// Gets or sets the display order
///
public int DisplayOrder { get; set; }
}