using Microsoft.EntityFrameworkCore; namespace BrokerApiCore; [Keyless] public class SsoAccountInfo { public ulong Id { get; init; } public ulong? AccessToken { get; init; } public ulong? AccessTokenIgm { get; init; } public string? Email { get; init; } = string.Empty; }