Core.BluePrint.Packages/Core.Blueprint.Redis/Adapters/CacheSettings.cs
Efrain Marin 398ca3d7b6 fix: updated namespaces
- code cleanup, removed unused usings
2025-05-19 10:32:59 -06:00

18 lines
472 B
C#

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