3 changed files with 22 additions and 1 deletions
@ -0,0 +1,19 @@ |
|||
using System; |
|||
|
|||
namespace LINGYUN.Abp.DataProtection; |
|||
|
|||
public class FakeProtectionObjectAuth : DataAuthBase<FakeProtectionObject, int> |
|||
{ |
|||
public FakeProtectionObjectAuth() |
|||
{ |
|||
} |
|||
|
|||
public FakeProtectionObjectAuth( |
|||
int entityId, |
|||
string role, |
|||
string organizationUnit, |
|||
Guid? tenantId = null) |
|||
: base(entityId, role, organizationUnit, tenantId) |
|||
{ |
|||
} |
|||
} |
|||
Loading…
Reference in new issue