using MediaBrowser.Model.Plugins;
namespace Jellyfin.Plugin.Seasonals.Configuration;
///
/// Plugin configuration.
///
public class PluginConfiguration : BasePluginConfiguration
{
///
/// Initializes a new instance of the class.
///
public PluginConfiguration()
{
SelectedSeason = "none";
AutomateSeasonSelection = true;
}
///
/// Gets or sets the selected season.
///
public string SelectedSeason { get; set; }
///
/// Gets or sets a value indicating whether to automate season selection.
///
public bool AutomateSeasonSelection { get; set; }
}