added auth with a simple UI
This commit is contained in:
11
api/OED.Api/Core/Models/Eve/EveCharacter.cs
Normal file
11
api/OED.Api/Core/Models/Eve/EveCharacter.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user