jellyfin/MediaBrowser.Model/Plugins/PluginPageInfo.cs

14 lines
288 B
C#
Raw Normal View History

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