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;

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

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

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

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

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

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

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

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

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