using Connected.Entities.Caching; namespace Common.Security.Identity; internal interface IUserCache : IEntityCacheClient { } internal sealed class UserCache : EntityCacheClient, IUserCache { public UserCache(IEntityCacheContext context) : base(context, User.CacheKey) { } }