namespace Nop.Data; /// /// Represents default values related to data settings /// public static partial class NopDataSettingsDefaults { /// /// Gets a path to the file that was used in old nopCommerce versions to contain data settings /// public static string ObsoleteFilePath => "~/App_Data/Settings.txt"; /// /// Gets a path to the file that contains data settings /// public static string FilePath => "~/App_Data/dataSettings.json"; }