using System; using System.Collections.Generic; using System.Collections.ObjectModel; using MediaBrowser.Model.Plugins; namespace ConfusedPolarBear.Plugin.IntroSkipper.Configuration; /// /// Plugin configuration. /// public class PluginConfiguration : BasePluginConfiguration { /// /// Initializes a new instance of the class. /// public PluginConfiguration() { } /// /// If the output of fpcalc should be cached to the filesystem. /// public bool CacheFingerprints { get; set; } /// /// Seconds before the intro starts to show the skip prompt at. /// public int ShowPromptAdjustment { get; set; } = 5; /// /// Seconds after the intro starts to hide the skip prompt at. /// public int HidePromptAdjustment { get; set; } = 10; }