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

7 lines
133 B
C#
Raw Normal View History

namespace Geekbot.net.Lib.Media
{
public interface IMediaProvider
{
2020-06-25 15:12:41 +02:00
string GetMedia(MediaType type);
}
}