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