Webiant Logo Webiant Logo
  1. No results found.

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

FilterLevelValueProductMapping.cs

namespace Nop.Core.Domain.FilterLevels;

/// <summary>
/// Represents a filter level value and product mapping
/// </summary>
public partial class FilterLevelValueProductMapping : BaseEntity
{
    /// <summary>
    /// Gets or sets the filter level value identifier
    /// </summary>
    public int FilterLevelValueId { get; set; }
    
    /// <summary>
    /// Gets or sets the product identifier
    /// </summary>
    public int ProductId { get; set; }
    
}