diff --git a/Mango.Nop.Core/Dtos/MgProductDto.cs b/Mango.Nop.Core/Dtos/MgProductDto.cs index ed97a36..1ebb5e7 100644 --- a/Mango.Nop.Core/Dtos/MgProductDto.cs +++ b/Mango.Nop.Core/Dtos/MgProductDto.cs @@ -17,6 +17,8 @@ public abstract class MgProductDto : MgEntityBase, /*Product,*/ IMgProductDto//I public string ShortDescription { get; set; } public string FullDescription { get; set; } + public string Sku { get; set; } + public int WarehouseId { get; set; } public decimal Price { get; set; } public int StockQuantity { get; set; } diff --git a/Mango.Nop.Core/Interfaces/IMgProductDto.cs b/Mango.Nop.Core/Interfaces/IMgProductDto.cs index b07e55c..0be1900 100644 --- a/Mango.Nop.Core/Interfaces/IMgProductDto.cs +++ b/Mango.Nop.Core/Interfaces/IMgProductDto.cs @@ -16,6 +16,7 @@ public interface IMgProductDto : IEntityInt, ILocalizedEntity, ISlugSupported, I string ShortDescription { get; set; } string FullDescription { get; set; } + string Sku { get; set; } int WarehouseId { get; set; } decimal Price { get; set; } int StockQuantity { get; set; }