aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Plugins/PluginPageInfo.cs
blob: 8ed2064b9b5355a837bafc713b01cc2ad7678e55 (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; }
    }
}