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

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