Files
caliverse_server/BrokerApiCore/DbEntity/SsoAccountInfo.cs
2025-05-01 07:23:28 +09:00

13 lines
281 B
C#

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;
}