Webiant Logo Webiant Logo
  1. No results found.

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

RelatedProduct.cs

namespace Nop.Core.Domain.Catalog;

/// 
/// Represents a related product
/// 
public partial class RelatedProduct : 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; }

    /// 
    /// Gets or sets the display order
    /// 
    public int DisplayOrder { get; set; }
}