Files
jellyfin-jellyfin-1/MediaBrowser.Model/Plugins/PluginPageInfo.cs
Andrew Rabert a86b71899e Add GPL modules
2018-12-27 18:27:57 -05:00

18 lines
383 B
C#

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; }
}
}