<PackageReference Include="Microsoft.Identity.Client" Version="4.83.3" />

Microsoft.Identity.Client.Cache.AdalUserInfo

sealed class AdalUserInfo
Contains information of a single user. This information is used for token cache lookup. Also if created with userId, userId is sent to the service when login_hint is accepted.
namespace Microsoft.Identity.Client.Cache { internal sealed class AdalUserInfo { public string UniqueId { get; } public string DisplayableId { get; } public string GivenName { get; } public string FamilyName { get; } public DateTimeOffset? PasswordExpiresOn { get; } public Uri PasswordChangeUrl { get; } public string IdentityProvider { get; } public AdalUserInfo(); public AdalUserInfo(AdalUserInfo other); } }