Webiant Logo Webiant Logo
  1. No results found.

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

ProductAttributeValuePicture.cs

namespace Nop.Core.Domain.Catalog;

/// <summary>
/// Represents a product attribute value picture
/// </summary>
public partial class ProductAttributeValuePicture : BaseEntity
{
    /// <summary>
    /// Gets or sets the product attribute value id
    /// </summary>
    public int ProductAttributeValueId { get; set; }

    /// <summary>
    /// Gets or sets the picture (identifier) associated with this value. This picture should replace a product main picture once clicked (selected).
    /// </summary>
    public int PictureId { get; set; }
}