using Nop.Core.Configuration; namespace Nop.Core.Domain.Directory; /// /// Currency settings /// public partial class CurrencySettings : ISettings { /// /// A value indicating whether to display currency labels /// public bool DisplayCurrencyLabel { get; set; } /// /// Primary store currency identifier /// public int PrimaryStoreCurrencyId { get; set; } /// /// Primary exchange rate currency identifier /// public int PrimaryExchangeRateCurrencyId { get; set; } /// /// Active exchange rate provider system name (of a plugin) /// public string ActiveExchangeRateProviderSystemName { get; set; } /// /// A value indicating whether to enable automatic currency rate updates /// public bool AutoUpdateEnabled { get; set; } }