mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
13 lines
411 B
C#
13 lines
411 B
C#
#nullable disable
|
|
using NadekoBot.Common.Pokemon;
|
|
using NadekoBot.Modules.Games.Common.Trivia;
|
|
|
|
namespace NadekoBot.Services;
|
|
|
|
public interface ILocalDataCache
|
|
{
|
|
IReadOnlyDictionary<string, SearchPokemon> Pokemons { get; }
|
|
IReadOnlyDictionary<string, SearchPokemonAbility> PokemonAbilities { get; }
|
|
IReadOnlyDictionary<int, string> PokemonMap { get; }
|
|
TriviaQuestion[] TriviaQuestions { get; }
|
|
} |