mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-05-04 12:02:51 +08:00
16 lines
440 B
C#
16 lines
440 B
C#
using NetAdmin.Cache;
|
|
using NetAdmin.SysComponent.Application.Modules.Sys;
|
|
using NetAdmin.SysComponent.Application.Services.Sys.Dependency;
|
|
|
|
namespace NetAdmin.SysComponent.Cache.Sys.Dependency;
|
|
|
|
/// <summary>
|
|
/// 用户缓存
|
|
/// </summary>
|
|
public interface IUserCache : ICache<IDistributedCache, IUserService>, IUserModule
|
|
{
|
|
/// <summary>
|
|
/// 删除缓存 UserInfoAsync
|
|
/// </summary>
|
|
Task RemoveUserInfoAsync();
|
|
} |