19 lines
No EOL
346 B
C#
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; }
|
|
}
|
|
} |