diff --git a/Mango.Nop.Core/Dtos/MgOrderItemDto.cs b/Mango.Nop.Core/Dtos/MgOrderItemDto.cs index 6c20457..68f0174 100644 --- a/Mango.Nop.Core/Dtos/MgOrderItemDto.cs +++ b/Mango.Nop.Core/Dtos/MgOrderItemDto.cs @@ -13,6 +13,13 @@ public abstract class MgOrderItemDto : MgEntityBase, IModelDtoBase< public int OrderId { get; set; } public int ProductId { get; set; } public int Quantity { get; set; } + + public decimal UnitPriceInclTax { get; set; } + public decimal UnitPriceExclTax { get; set; } + + public decimal PriceInclTax { get; set; } + public decimal PriceExclTax { get; set; } + public string AttributesXml { get; set; } public decimal? ItemWeight { get; set; }