8 lines
234 B
C#
8 lines
234 B
C#
|
namespace Core.Interfaces
|
||
|
{
|
||
|
public interface IResponseCacheService
|
||
|
{
|
||
|
Task CacheResponseAsync(string cacheKey, object response, TimeSpan timeToLive);
|
||
|
Task<string> GetCachedResponseAsync(string cacheKey);
|
||
|
}
|
||
|
}
|