Class ClaimDto
A single claim returned from the identity endpoint.
[ExcludeFromCodeCoverage]
public sealed record ClaimDto : IEquatable<ClaimDto>
- Inheritance
-
ClaimDto
- Implements
- Inherited Members
- Extension Methods
Constructors
ClaimDto(string, string)
A single claim returned from the identity endpoint.
public ClaimDto(string Type, string Value)
Parameters
Properties
Type
The claim type (e.g. email, role).
public string Type { get; init; }
Property Value
Value
The claim value.
public string Value { get; init; }