mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
13 lines
448 B
C#
13 lines
448 B
C#
#nullable disable
|
|
using NadekoBot.Common.Pokemon;
|
|
using NadekoBot.Modules.Games.Common.Trivia;
|
|
|
|
namespace NadekoBot.Services;
|
|
|
|
public interface ILocalDataCache
|
|
{
|
|
Task<IReadOnlyDictionary<string, SearchPokemon>> GetPokemonsAsync();
|
|
Task<IReadOnlyDictionary<string, SearchPokemonAbility>> GetPokemonAbilitiesAsync();
|
|
Task<TriviaQuestionModel[]> GetTriviaQuestionsAsync();
|
|
Task<IReadOnlyDictionary<int, string>> GetPokemonMapAsync();
|
|
} |