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

15 lines
352 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();
2019-05-01 18:22:44 +02:00
string GetDab();
}
}