using Org.BouncyCastle.Tls; using System.Collections.Generic; namespace IRaCIS.Core.Application.Service.OAuth; public class LogtoUser { public string Id { get; set; } public string Username { get; set; } public string PrimaryEmail { get; set; } public string PrimaryPhone { get; set; } public string Name { get; set; } public string Avatar { get; set; } public Dictionary CustomData { get; set; } // Assuming customData can be any object public Dictionary Identities { get; set; } public Dictionary Profile { get; set; } public string ApplicationId { get; set; } public bool IsSuspended { get; set; } public bool HasPassword { get; set; } }