Try your search with a different keyword or use * as a wildcard.
using System.ComponentModel;
namespace Nop.Services.Common.Pdf;
///
/// Represents product entry
///
public partial class ProductItem
{
#region Ctor
public ProductItem()
{
ProductAttributes = new();
}
#endregion
#region Properties
///
/// Gets or sets the product name
///
[DisplayName("Pdf.Product.Name")]
public string Name { get; set; }
///
/// Gets or sets the product SKU
///
[DisplayName("Pdf.Product.Sku")]
public string Sku { get; set; }
///
/// Gets or sets a vendor name
///
[DisplayName("Pdf.Product.VendorName")]
public string VendorName { get; set; }
///
/// Gets or sets the product price
///
[DisplayName("Pdf.Product.Price")]
public string Price { get; set; }
///
/// Gets or sets the product quantity
///
[DisplayName("Pdf.Product.Quantity")]
public string Quantity { get; set; }
///
/// Gets or sets the product total
///
[DisplayName("Pdf.Product.Total")]
public string Total { get; set; }
///
/// Gets or sets the product attribute description
///
public List ProductAttributes { get; set; }
#endregion
}