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.
14 lines
387 B
14 lines
387 B
namespace Connected.Security.Authorization
|
|
{
|
|
public class AuthorizationArgs : EventArgs
|
|
{
|
|
public IAuthorizationSchema? Schema { get; init; }
|
|
public int? User { get; init; }
|
|
public object? PrimaryKey { get; init; }
|
|
public string Claim { get; init; }
|
|
public string? Entity { get; init; }
|
|
public string? Component { get; init; }
|
|
public string? Method { get; init; }
|
|
}
|
|
}
|