Skip to main content
Table of Contents

Class ClaimDto

Namespace
Stratara.Identity.Core.Models
Assembly
Stratara.Identity.Core.dll

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

Type string

The claim type (e.g. email, role).

Value string

The claim value.

Properties

Type

The claim type (e.g. email, role).

public string Type { get; init; }

Property Value

string

Value

The claim value.

public string Value { get; init; }

Property Value

string