Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Catalog;
///
/// Represents a cross-sell product
///
public partial class CrossSellProduct : BaseEntity
{
///
/// Gets or sets the first product identifier
///
public int ProductId1 { get; set; }
///
/// Gets or sets the second product identifier
///
public int ProductId2 { get; set; }
}