Core.BluePrint.Packages/Core.Blueprint.Redis/Adapters/CacheSettings.cs
2025-06-21 22:05:27 -06:00

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