Webiant Logo Webiant Logo
  1. No results found.

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

ProductAttributeValuePicture.cs

using Nop.Core.Domain.Localization;

namespace Nop.Core.Domain.Catalog;

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

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