Sky.Net/Core/Interfaces/IResponseCacheService.cs

8 lines
234 B
C#
Raw Normal View History

2022-05-31 13:54:41 -07:00
namespace Core.Interfaces
{
public interface IResponseCacheService
{
Task CacheResponseAsync(string cacheKey, object response, TimeSpan timeToLive);
Task<string> GetCachedResponseAsync(string cacheKey);
}
}