29 lines
924 B
C#
29 lines
924 B
C#
using AyCode.Interfaces.Entities;
|
|
using Nop.Core.Domain.Common;
|
|
using Nop.Core.Domain.Discounts;
|
|
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<DiscountProductMapping>*/, 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; }
|
|
} |