15 lines
471 B
C#
15 lines
471 B
C#
|
using NadekoBot.Core.Common.Pokemon;
|
|||
|
using NadekoBot.Modules.Games.Common.Trivia;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace NadekoBot.Core.Services
|
|||
|
{
|
|||
|
public interface ILocalDataCache
|
|||
|
{
|
|||
|
IReadOnlyDictionary<string, SearchPokemon> Pokemons { get; }
|
|||
|
IReadOnlyDictionary<string, SearchPokemonAbility> PokemonAbilities { get; }
|
|||
|
TriviaQuestion[] TriviaQuestions { get; }
|
|||
|
IReadOnlyDictionary<int, string> PokemonMap { get; }
|
|||
|
}
|
|||
|
}
|