aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Plugin.cs
blob: 8def96da8d570f2502351d8e0c9419aed77a3cd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using MediaBrowser.Common.Plugins;
using System.ComponentModel.Composition;

namespace MediaBrowser.Api
{
    [Export(typeof(BasePlugin))]
    public class Plugin : BasePlugin
    {
        public override string Name
        {
            get { return "Media Browser API"; }
        }
    }
}