using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Core.Blueprint.Redis { public interface ICacheSettings { int DefaultCacheDurationInMinutes { get; set; } } /// /// Represents the settings for Redis caching. /// public class CacheSettings: ICacheSettings { /// /// Gets or sets the default cache duration in minutes. /// public int DefaultCacheDurationInMinutes { get; set; } } }