mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-11-04 16:44:28 -05:00
Restructured folders and project names, ci should be fixed
This commit is contained in:
14
src/NadekoBot/Services/ILocalDataCache.cs
Normal file
14
src/NadekoBot/Services/ILocalDataCache.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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; }
|
||||
IReadOnlyDictionary<int, string> PokemonMap { get; }
|
||||
TriviaQuestion[] TriviaQuestions { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user