Webiant Logo Webiant Logo
  1. No results found.

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

QuoteItemModel.cs

using Nop.Web.Framework.Models;

namespace Nop.Plugin.Misc.RFQ.Models.Customer;

/// 
/// Represents a quote item model
/// 
public record QuoteItemModel : BaseNopEntityModel
{
    public int Quantity { get; set; }

    public string UnitPrice { get; set; }

    public string AttributeInfo { get; set; }

    public string PictureUrl { get; set; }

    public string ProductName { get; set; }

    public string ProductSeName { get; set; }
}