12 lines
232 B
C#
12 lines
232 B
C#
|
using MediaBrowser.Common.Plugins;
|
|||
|
|
|||
|
namespace MediaBrowser.InternetProviders
|
|||
|
{
|
|||
|
public class Plugin : BasePlugin<PluginConfiguration>
|
|||
|
{
|
|||
|
protected override void InitInternal()
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|