Webiant Logo Webiant Logo
  1. No results found.

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

ProductAttributeCombinationPicture.cs

namespace Nop.Core.Domain.Catalog;

/// 
/// Represents a product attribute combination picture
/// 
public partial class ProductAttributeCombinationPicture : BaseEntity
{
    /// 
    /// Gets or sets the product attribute combination id
    /// 
    public int ProductAttributeCombinationId { get; set; }

    /// 
    /// Gets or sets the identifier of picture associated with this combination
    /// 
    public int PictureId { get; set; }
}