mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-16 12:40:27 +01:00
Pushing missing changes
This commit is contained in:
27
TestPlugin/Plugin.cs
Normal file
27
TestPlugin/Plugin.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.ComponentModel.Composition;
|
||||
using MediaBrowser.Common.Plugins;
|
||||
using MediaBrowser.Common.Logging;
|
||||
using MediaBrowser.Controller.Entities;
|
||||
|
||||
namespace TestPlugin
|
||||
{
|
||||
[Export(typeof(BasePlugin))]
|
||||
public class Plugin : BasePlugin
|
||||
{
|
||||
public override string Name
|
||||
{
|
||||
get { return "Test MB3 Plug-in"; }
|
||||
}
|
||||
|
||||
protected override void InitializeOnServer(bool isFirstRun)
|
||||
{
|
||||
base.InitializeOnServer(isFirstRun);
|
||||
Logger.LogDebugInfo("Test Plug-in Loaded.");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user