using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Cloud.Services.Cache { public interface IRedisCacheService { Task SetCacheAsync(string key, T value, TimeSpan? expiry = null); Task GetCacheAsync(string key); } }