Webiant Logo Webiant Logo
  1. No results found.

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

QuoteItem.cs

using Nop.Core;

namespace Nop.Plugin.Misc.RFQ.Domains;

/// <summary>
/// Represents a quote item entity
/// </summary>
public class QuoteItem : BaseEntity
{
    /// <summary>
    /// Gets or sets the quote identifier
    /// </summary>
    public int QuoteId { get; set; }

    /// <summary>
    /// Gets or sets the product identifier
    /// </summary>
    public int ProductId { get; set; }

    /// <summary>
    /// Gets or sets the requested quantity
    /// </summary>
    public int? RequestedQty { get; set; }

    /// <summary>
    /// Gets or sets the requested unit price in primary store currency (include tax)
    /// </summary>
    public decimal? RequestedUnitPrice { get; set; }

    /// <summary>
    /// Gets or sets the quantity
    /// </summary>
    public int OfferedQty { get; set; }

    /// <summary>
    /// Gets or sets the unit price in primary store currency (include tax)
    /// </summary>
    public decimal OfferedUnitPrice { get; set; }

    /// <summary>
    /// Gets or sets the product attributes in XML format
    /// </summary>
    public string AttributesXml { get; set; }

    /// <summary>
    /// Request a quote identifier
    /// </summary>
    public int? RequestQuoteId { get; set; }

    /// <summary>
    /// Shopping cart item identifier
    /// </summary>
    public int? ShoppingCartItemId { get; set; }
}