mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-08 05:00:16 -05:00
14 lines
288 B
C#
14 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; }
|
|
}
|
|
}
|