using AyCode.Interfaces.Entities; using Nop.Core.Domain.Common; using Nop.Core.Domain.Localization; using Nop.Core.Domain.Security; using Nop.Core.Domain.Seo; using Nop.Core.Domain.Stores; namespace Mango.Nop.Core.Interfaces; public interface IMgProductDto : IEntityInt, ILocalizedEntity, ISlugSupported, IAclSupported, IStoreMappingSupported/*, IDiscountSupported*/, ISoftDeletedEntity { int ProductTypeId { get; set; } int ParentGroupedProductId { get; set; } string Name { get; set; } string ShortDescription { get; set; } string FullDescription { get; set; } int WarehouseId { get; set; } decimal Price { get; set; } int StockQuantity { get; set; } decimal ProductCost { get; set; } decimal Weight { get; set; } decimal Length { get; set; } decimal Width { get; set; } decimal Height { get; set; } }