Class IdentityDetails
- Namespace
- Cratis.Applications.Identity
- Assembly
- Cratis.Applications.dll
Represents the identity details returned by IProvideIdentityDetails.
public record IdentityDetails : IEquatable<IdentityDetails>
- Inheritance
-
IdentityDetails
- Implements
- Inherited Members
Constructors
IdentityDetails(bool, object)
Represents the identity details returned by IProvideIdentityDetails.
public IdentityDetails(bool IsUserAuthorized, object Details)
Parameters
Properties
Details
The actual details.
public object Details { get; init; }
Property Value
IsUserAuthorized
Whether or not the user is authorized.
public bool IsUserAuthorized { get; init; }