You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Connected.Common/Common/Security/Permissions/PermissionCache.cs

12 lines
342 B

using Connected.Entities.Caching;
namespace Common.Security.Permissions;
internal interface IPermissionCache : IEntityCacheClient<Permission, int> { }
internal class PermissionCache : EntityCacheClient<Permission, int>, IPermissionCache
{
public PermissionCache(IEntityCacheContext context) : base(context, Permission.CacheKey)
{
}
}