2012-07-25 22:33:11 -04:00
|
|
|
|
using System.ComponentModel.Composition;
|
|
|
|
|
|
using MediaBrowser.Common.Plugins;
|
2012-07-24 10:54:34 -04:00
|
|
|
|
using MediaBrowser.Model.Plugins;
|
2012-07-12 02:55:27 -04:00
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Configuration
|
|
|
|
|
|
{
|
2012-07-25 22:33:11 -04:00
|
|
|
|
[Export(typeof(BasePlugin))]
|
2012-07-24 10:54:34 -04:00
|
|
|
|
public class Plugin : BaseGenericPlugin<BasePluginConfiguration>
|
2012-07-12 02:55:27 -04:00
|
|
|
|
{
|
2012-07-24 10:54:34 -04:00
|
|
|
|
public override string Name
|
2012-07-12 02:55:27 -04:00
|
|
|
|
{
|
2012-07-24 10:54:34 -04:00
|
|
|
|
get { return "Web-based Configuration"; }
|
2012-07-12 02:55:27 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|