mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
15 lines
461 B
C#
15 lines
461 B
C#
using NadekoBot.Common.Pokemon;
|
|
using NadekoBot.Modules.Games.Common.Trivia;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NadekoBot.Services
|
|
{
|
|
public interface ILocalDataCache
|
|
{
|
|
IReadOnlyDictionary<string, SearchPokemon> Pokemons { get; }
|
|
IReadOnlyDictionary<string, SearchPokemonAbility> PokemonAbilities { get; }
|
|
IReadOnlyDictionary<int, string> PokemonMap { get; }
|
|
TriviaQuestion[] TriviaQuestions { get; }
|
|
}
|
|
}
|