9 lines
219 B
C#
9 lines
219 B
C#
namespace OED.Api.Core.Models.Eve;
|
|
|
|
public record EveSession
|
|
{
|
|
public long CharacterId { get; init; }
|
|
public string CharacterName { get; init; } = string.Empty;
|
|
public string[] Scopes { get; init; } = [];
|
|
}
|