mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-19 15:33:03 +03:00
18 lines
383 B
C#
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; }
|
|||
|
|
}
|
|||
|
|
}
|