namespace Nop.Core.Configuration; /// /// Represents cache configuration parameters /// public partial class CacheConfig : IConfig { /// /// Gets or sets the default cache time in minutes /// public int DefaultCacheTime { get; protected set; } = 60; /// /// Gets or sets whether to disable linq2db query cache /// public bool LinqDisableQueryCache { get; protected set; } = false; }