namespace Shogi.UI.Identity; /// /// User info from identity endpoint to establish claims. /// public class UserInfo { /// /// The email address. /// public string Email { get; set; } = string.Empty; /// /// A value indicating whether the email has been confirmed yet. /// public bool IsEmailConfirmed { get; set; } /// /// The list of claims for the user. /// public Dictionary Claims { get; set; } = []; }