13 lines
287 B
C#
13 lines
287 B
C#
namespace BrokerCore.DbEntity;
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
[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;
|
|
}
|