Try your search with a different keyword or use * as a wildcard.
using Nop.Core;
namespace Nop.Plugin.Misc.RFQ.Domains;
///
/// Represents a request a quote item entity
///
public class RequestQuoteItem : BaseEntity, IAdminNote
{
///
/// Gets or sets the product identifier
///
public int ProductId { get; set; }
///
/// Gets or sets the product attributes in XML format
///
public string ProductAttributesXml { get; set; }
///
/// Gets or sets the original cost of this item, qty 1
///
public decimal OriginalProductPrice { get; set; }
///
/// Gets or sets the unit price in primary store currency (include tax)
///
public decimal RequestedUnitPrice { get; set; }
///
/// Gets or sets the quantity
///
public int RequestedQty { get; set; }
///
/// Gets or sets the administration notes
///
public string AdminNotes { get; set; } = string.Empty;
///
/// Gets or sets the request quote identifier
///
public int RequestQuoteId { get; set; }
}