namespace Core.Blueprint.Caching.Adapters
{
    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; }
    }
}