12 lines
403 B
C#
12 lines
403 B
C#
namespace OED.Api.Core.Models.Eve;
|
|
|
|
public record EveCharacter
|
|
{
|
|
public long CharacterId { get; init; }
|
|
public string CharacterName { get; init; } = string.Empty;
|
|
public string[] Scopes { get; init; } = [];
|
|
public string AccessToken { get; init; } = string.Empty;
|
|
public string RefreshToken { get; init; } = string.Empty;
|
|
public DateTimeOffset AccessTokenExpiry { get; init; }
|
|
}
|