geekbot/Geekbot.net/Lib/CatClient.cs
2017-04-18 14:08:56 +02:00

19 lines
No EOL
346 B
C#

using RestSharp;
namespace Geekbot.net.Modules
{
public interface ICatClient
{
IRestClient Client { get; set; }
}
public class CatClient : ICatClient
{
public CatClient()
{
Client = new RestClient("http://random.cat");
}
public IRestClient Client { get; set; }
}
}