using Admin.Core.Common.Output; using System.Threading.Tasks; namespace Admin.Core.Service.Admin.Cache { /// /// 缓存服务 /// public interface ICacheService { /// /// 缓存列表 /// /// IResponseOutput List(); /// /// 清除缓存 /// /// /// Task ClearAsync(string cacheKey); } }