Interface IIdentityRoleClaim<TKey>
Represents a claim that is granted to all users within a role.
public interface IIdentityRoleClaim<TKey> : IClameConverter where TKey : IEquatable<TKey>
Type Parameters
TKey
The type of the primary key of the role associated with this claim.
- Inherited Members
Properties
ClaimType
Gets or sets the claim type for this claim.
string ClaimType { get; set; }
Property Value
ClaimValue
Gets or sets the claim value for this claim.
string ClaimValue { get; set; }
Property Value
Id
Gets or sets the identifier for this role claim.
int Id { get; set; }
Property Value
RoleId
Gets or sets the of the primary key of the role associated with this claim.
TKey RoleId { get; set; }
Property Value
- TKey