jellyfin/MediaBrowser.Model/Plugins/PluginPageInfo.cs

14 lines
288 B
C#
Raw Normal View History

2016-10-26 08:01:42 +02:00
namespace MediaBrowser.Model.Plugins
{
public class PluginPageInfo
{
public string Name { get; set; }
2017-09-15 08:32:20 +02:00
public string DisplayName { get; set; }
2016-10-26 08:01:42 +02:00
public string EmbeddedResourcePath { get; set; }
2017-09-15 08:32:20 +02:00
public bool EnableInMainMenu { get; set; }
2016-10-26 08:01:42 +02:00
}
}