namespace Nop.Services.ExportImport; /// /// Represents default values related to Export/Import features /// public static partial class ExportImportDefaults { /// /// Gets the name of the default hash algorithm /// /// /// SHA512 - it's quite fast hash (to cheaply distinguish between objects) /// public static string ImageHashAlgorithm => "SHA512"; /// /// Gets the path to temporary files /// public static string UploadsTempPath => "~/App_Data/TempUploads"; /// /// Gets or sets the cell offset /// public static int ProductAdditionalInfoCellOffset => 2; }