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; }
}
}