You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
433 B
20 lines
433 B
using MediaBrowser.Common.Plugins;
|
|
using System.ComponentModel.Composition;
|
|
|
|
namespace MediaBrowser.Plugins.DefaultTheme
|
|
{
|
|
[Export(typeof(BasePlugin))]
|
|
public class Plugin : BaseTheme
|
|
{
|
|
public override string Name
|
|
{
|
|
get { return "Default Theme"; }
|
|
}
|
|
|
|
protected override void InitializeInUi()
|
|
{
|
|
base.InitializeInUi();
|
|
}
|
|
}
|
|
}
|