meysamhadeli 31dc05f580 init
2022-05-07 19:33:06 +04:30

10 lines
170 B
C#

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