2025-03-15 01:39:43 +03:30

8 lines
154 B
C#

namespace BuildingBlocks.Caching;
public interface ICacheRequest
{
string CacheKey { get; }
DateTime? AbsoluteExpirationRelativeToNow { get; }
}