using NadekoBot.Core.Common.Pokemon; using NadekoBot.Modules.Games.Common.Trivia; using System.Collections.Generic; namespace NadekoBot.Core.Services { public interface ILocalDataCache { IReadOnlyDictionary Pokemons { get; } IReadOnlyDictionary PokemonAbilities { get; } TriviaQuestion[] TriviaQuestions { get; } IReadOnlyDictionary PokemonMap { get; } } }