33 lines
1.0 KiB
C#
33 lines
1.0 KiB
C#
using ClosedXML.Excel;
|
|
using Nop.Core.Domain.Catalog;
|
|
using Nop.Core.Domain.Localization;
|
|
using Nop.Services.ExportImport.Help;
|
|
|
|
namespace Nop.Services.ExportImport;
|
|
|
|
public partial class ImportProductMetadata
|
|
{
|
|
public int EndRow { get; internal set; }
|
|
|
|
public PropertyManager<Product, Language> Manager { get; internal set; }
|
|
|
|
public IList<PropertyByName<Product, Language>> Properties { get; set; }
|
|
|
|
public int CountProductsInFile => ProductsInFile.Count;
|
|
|
|
public PropertyManager<ExportProductAttribute, Language> ProductAttributeManager { get; internal set; }
|
|
|
|
public PropertyManager<ExportSpecificationAttribute, Language> SpecificationAttributeManager { get; internal set; }
|
|
|
|
public PropertyManager<ExportTierPrice, Language> TierPriceManager { get; internal set; }
|
|
|
|
public IXLWorksheet DefaultWorksheet { get; set; }
|
|
|
|
public List<IXLWorksheet> LocalizedWorksheets { get; set; }
|
|
|
|
public int SkuCellNum { get; internal set; }
|
|
|
|
public List<string> AllSku { get; set; }
|
|
|
|
public List<int> ProductsInFile { get; set; }
|
|
} |