1234567891011121314151617181920212223242526 |
- using Admin.Core.Common.Output;
- using System.Threading.Tasks;
- namespace Admin.Core.Service.Admin.Cache
- {
-
-
-
- public interface ICacheService
- {
-
-
-
-
- IResponseOutput List();
-
-
-
-
-
- Task<IResponseOutput> ClearAsync(string cacheKey);
- }
- }
|