mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 20:03:57 +01:00
13 lines
288 B
C#
13 lines
288 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; }
|
|
}
|
|
}
|