Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Catalog;
///
/// Represents a product picture mapping
///
public partial class ProductPicture : BaseEntity
{
///
/// Gets or sets the product identifier
///
public int ProductId { get; set; }
///
/// Gets or sets the picture identifier
///
public int PictureId { get; set; }
///
/// Gets or sets the display order
///
public int DisplayOrder { get; set; }
}