namespace Nop.Plugin.Misc.FruitBankPlugin.Models.Orders;
///
/// Minimal contract for adding a product to an order.
/// Implemented by CustomOrderController.OrderProductItem, AddProductModel,
/// and any other DTO that needs to be passed to FruitBankOrderItemService.
///
public interface IOrderProductItemBase
{
/// ProductId
int Id { get; set; }
int Quantity { get; set; }
decimal Price { get; set; }
}