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; } = []; }