Rename the clients namescape to MalClient, because that was the only thing in there, while other clients got their own namespaces

This commit is contained in:
runebaas 2020-08-08 21:17:02 +02:00
parent c22d0cf941
commit 7b6dd2d2f9
No known key found for this signature in database
GPG key ID: 2677AF508D0300D6
4 changed files with 4 additions and 4 deletions

View file

@ -0,0 +1,12 @@
using System.Threading.Tasks;
using MyAnimeListSharp.Core;
namespace Geekbot.net.Lib.MalClient
{
public interface IMalClient
{
bool IsLoggedIn();
Task<AnimeEntry> GetAnime(string query);
Task<MangaEntry> GetManga(string query);
}
}