Try your search with a different keyword or use * as a wildcard.
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; }
}