2018-05-03 00:56:06 +02:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using MyAnimeListSharp.Core;
|
|
|
|
|
|
2020-08-08 21:17:02 +02:00
|
|
|
|
namespace Geekbot.net.Lib.MalClient
|
2018-05-03 00:56:06 +02:00
|
|
|
|
{
|
|
|
|
|
public interface IMalClient
|
|
|
|
|
{
|
|
|
|
|
bool IsLoggedIn();
|
|
|
|
|
Task<AnimeEntry> GetAnime(string query);
|
|
|
|
|
Task<MangaEntry> GetManga(string query);
|
|
|
|
|
}
|
|
|
|
|
}
|