mirror of
https://github.com/jellyfin/jellyfin-plugin-bookshelf.git
synced 2024-11-27 15:40:47 +00:00
47 lines
1.2 KiB
C#
47 lines
1.2 KiB
C#
using MediaBrowser.Common.Configuration;
|
|
using MediaBrowser.Common.Plugins;
|
|
using MediaBrowser.Model.Serialization;
|
|
using MediaBrowser.Plugins.ProwlNotifications.Configuration;
|
|
|
|
namespace MediaBrowser.Plugins.ProwlNotifications
|
|
{
|
|
/// <summary>
|
|
/// Class Plugin
|
|
/// </summary>
|
|
public class Plugin : BasePlugin<PluginConfiguration>
|
|
{
|
|
public Plugin(IApplicationPaths applicationPaths, IXmlSerializer xmlSerializer)
|
|
: base(applicationPaths, xmlSerializer)
|
|
{
|
|
Instance = this;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the name of the plugin
|
|
/// </summary>
|
|
/// <value>The name.</value>
|
|
public override string Name
|
|
{
|
|
get { return "Prowl Notifications"; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the description.
|
|
/// </summary>
|
|
/// <value>The description.</value>
|
|
public override string Description
|
|
{
|
|
get
|
|
{
|
|
return "Sends notifications via Prowl Service.";
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the instance.
|
|
/// </summary>
|
|
/// <value>The instance.</value>
|
|
public static Plugin Instance { get; private set; }
|
|
}
|
|
}
|