Try your search with a different keyword or use * as a wildcard.
using System.ComponentModel;
namespace Nop.Services.Common.Pdf;
///
/// Represents a PDF catalog entry
///
public partial class CatalogItem : ProductItem
{
#region Ctor
public CatalogItem()
{
PicturePaths = new();
}
#endregion
#region Properties
///
/// Gets or sets the entry description
///
public string Description { get; set; }
///
/// Gets or sets the stock quantity
///
[DisplayName("Pdf.Product.StockQuantity")]
public string Stock { get; set; }
///
/// Gets or sets the entry weight
///
[DisplayName("Pdf.Product.Weight")]
public string Weight { get; set; }
///
/// Gets or sets a set of paths to entry images
///
public HashSet PicturePaths { get; set; }
#endregion
}