Webiant Logo Webiant Logo
  1. No results found.

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

CrossSellProduct.cs

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