aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Plugins.DefaultTheme/Plugin.cs
blob: f12d53af122407bf4cbf626401b820654fb45e89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using MediaBrowser.Common.Plugins;
using System;
using System.ComponentModel.Composition;

namespace MediaBrowser.Plugins.DefaultTheme
{
    [Export(typeof(BasePlugin))]
    public class Plugin : BaseTheme
    {
        public override string Name
        {
            get { return "Default Theme"; }
        }

        public override Uri LoginPageUri
        {
            get { return GeneratePackUri("Pages/LoginPage.xaml"); }
        }
    }
}