aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Plugins/PluginPageInfo.cs
blob: 045a0072c5dc85e2f3c69bbb5d2546f1691da655 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace MediaBrowser.Model.Plugins
{
    public class PluginPageInfo
    {
        public string Name { get; set; }

        public string DisplayName { get; set; }

        public string EmbeddedResourcePath { get; set; }

        public bool EnableInMainMenu { get; set; }

        public string MenuSection { get; set; }

        public string MenuIcon { get; set; }
    }
}