intro-skipper/example-plugin/Configuration/PluginConfiguration.cs

26 lines
738 B
C#
Raw Normal View History

2019-02-21 01:57:43 -08:00
using MediaBrowser.Model.Plugins;
2019-03-10 08:53:30 +09:00
namespace Jellyfin.Plugin.Template.Configuration
2019-02-21 01:57:43 -08:00
{
public enum SomeOptions
{
OneOption,
AnotherOption
}
public class PluginConfiguration : BasePluginConfiguration
{
//This is where you should store configurable settings your plugin might need.
2019-03-10 08:53:30 +09:00
public bool TrueFalseSetting { get; set; }
public int AnInteger { get; set; }
public string AString { get; set; }
public SomeOptions Options { get; set; }
2019-02-21 01:57:43 -08:00
public PluginConfiguration()
{
Options = SomeOptions.AnotherOption;
TrueFalseSetting = true;
AnInteger = 5;
AString = "This is a string setting";
}
}
2019-03-10 08:53:30 +09:00
}