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.

ILuPermissionsProvider.cs 485B

12345678910111213
  1. using Luticate2.Utils.Dbo.Result;
  2. namespace Luticate2.Auth.Interfaces.Permissions
  3. {
  4. public interface ILuPermissionsProvider
  5. {
  6. LuResult<bool?> GetPermissionValue(string permissionName, string srcEntityType, object srcEntity,
  7. string dstEntityType, object dstEntity);
  8. LuResult<bool?> GetPermissionEffectiveValue(string permissionName, string srcEntityType, object srcEntity,
  9. string dstEntityType, object dstEntity);
  10. }
  11. }