18 lines
461 B
C#
18 lines
461 B
C#
namespace Core.Blueprint.Redis
|
|
{
|
|
public interface ICacheSettings
|
|
{
|
|
int DefaultCacheDurationInMinutes { get; set; }
|
|
}
|
|
/// <summary>
|
|
/// Represents the settings for Redis caching.
|
|
/// </summary>
|
|
public class CacheSettings: ICacheSettings
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the default cache duration in minutes.
|
|
/// </summary>
|
|
public int DefaultCacheDurationInMinutes { get; set; }
|
|
}
|
|
}
|