Sky.Net/Core/Interfaces/IResponseCacheService.cs
2022-05-31 13:54:41 -07:00

8 lines
234 B
C#

namespace Core.Interfaces
{
public interface IResponseCacheService
{
Task CacheResponseAsync(string cacheKey, object response, TimeSpan timeToLive);
Task<string> GetCachedResponseAsync(string cacheKey);
}
}