small code formatting changes
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
using MediaBrowser.Model.Plugins;
|
||||
namespace Jellyfin.Plugin.ExamplePlugin.Configuration
|
||||
|
||||
namespace Jellyfin.Plugin.Template.Configuration
|
||||
{
|
||||
public enum SomeOptions
|
||||
{
|
||||
@@ -9,10 +10,10 @@ namespace Jellyfin.Plugin.ExamplePlugin.Configuration
|
||||
public class PluginConfiguration : BasePluginConfiguration
|
||||
{
|
||||
//This is where you should store configurable settings your plugin might need.
|
||||
public bool TrueFalseSetting {get; set;}
|
||||
public int AnInteger {get; set;}
|
||||
public string AString {get; set;}
|
||||
public SomeOptions Options {get; set;}
|
||||
public bool TrueFalseSetting { get; set; }
|
||||
public int AnInteger { get; set; }
|
||||
public string AString { get; set; }
|
||||
public SomeOptions Options { get; set; }
|
||||
public PluginConfiguration()
|
||||
{
|
||||
Options = SomeOptions.AnotherOption;
|
||||
@@ -21,4 +22,4 @@ namespace Jellyfin.Plugin.ExamplePlugin.Configuration
|
||||
AString = "This is a string setting";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user