mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-26 18:54:48 +03:00
17 lines
347 B
C#
17 lines
347 B
C#
using MediaBrowser.Common.Plugins;
|
|
|
|
namespace MediaBrowser.InternetProviders
|
|
{
|
|
public class Plugin : BaseGenericPlugin<PluginConfiguration>
|
|
{
|
|
public override string Name
|
|
{
|
|
get { return "Internet Providers"; }
|
|
}
|
|
|
|
public override void InitInServer()
|
|
{
|
|
}
|
|
}
|
|
}
|