geekbot/Geekbot.net/Lib/Media/IMediaProvider.cs

14 lines
326 B
C#
Raw Normal View History

namespace Geekbot.net.Lib.Media
{
public interface IMediaProvider
{
string GetCheckem();
string GetPanda();
string GetCrossant();
string GetSquirrel();
string GetPumpkin();
string GetTurtle();
string GetPinguin();
string GetFox();
}
}