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 Manager { get; internal set; } public IList> Properties { get; set; } public int CountProductsInFile => ProductsInFile.Count; public PropertyManager ProductAttributeManager { get; internal set; } public PropertyManager SpecificationAttributeManager { get; internal set; } public IXLWorksheet DefaultWorksheet { get; set; } public List LocalizedWorksheets { get; set; } public int SkuCellNum { get; internal set; } public List AllSku { get; set; } public List ProductsInFile { get; set; } }