jellyfin/MediaBrowser.Model/Plugins/PluginPageInfo.cs

21 lines
430 B
C#
Raw Normal View History

#nullable disable
2020-02-04 01:49:27 +01:00
#pragma warning disable CS1591
namespace MediaBrowser.Model.Plugins
2018-12-28 00:27:57 +01:00
{
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; }
}
}