Webiant Logo Webiant Logo
  1. No results found.

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

CatalogItem.cs

using System.ComponentModel;

namespace Nop.Services.Common.Pdf;

/// <summary>
/// Represents a PDF catalog entry
/// </summary>
public partial class CatalogItem : ProductItem
{
    #region Properties

    /// <summary>
    /// Gets or sets the entry description
    /// </summary>
    public string Description { get; set; }

    /// <summary>
    /// Gets or sets the stock quantity
    /// </summary>
    [DisplayName("Pdf.Product.StockQuantity")]
    public string Stock { get; set; }

    /// <summary>
    /// Gets or sets the entry weight
    /// </summary>
    [DisplayName("Pdf.Product.Weight")]
    public string Weight { get; set; }

    /// <summary>
    /// Gets or sets a set of paths to entry images
    /// </summary>
    public HashSet<string> PicturePaths { get; set; } = new();

    #endregion
}