Microsoft.Extensions.Identity.Stores by Microsoft

<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="2.1.1" />

 IdentityUserClaim<TKey>

public class IdentityUserClaim<TKey> where TKey : IEquatable<TKey>
Represents a claim that a user possesses.
public virtual string ClaimType { get; set; }

Gets or sets the claim type for this claim.

public virtual string ClaimValue { get; set; }

Gets or sets the claim value for this claim.

public virtual int Id { get; set; }

Gets or sets the identifier for this user claim.

public virtual TKey UserId { get; set; }

Gets or sets the primary key of the user associated with this claim.

public virtual void InitializeFromClaim(Claim claim)

Reads the type and value from the Claim.

public virtual Claim ToClaim()

Converts the entity into a Claim instance.