26 lines
623 B
C#
Raw Normal View History

2022-05-01 01:24:57 -05:00
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
2019-02-21 01:57:43 -08:00
using MediaBrowser.Model.Plugins;
2019-03-10 08:53:30 +09:00
2022-04-29 23:52:50 -05:00
namespace ConfusedPolarBear.Plugin.IntroSkipper.Configuration;
2021-12-13 16:58:05 -07:00
/// <summary>
/// Plugin configuration.
/// </summary>
public class PluginConfiguration : BasePluginConfiguration
{
/// <summary>
/// Initializes a new instance of the <see cref="PluginConfiguration"/> class.
/// </summary>
public PluginConfiguration()
2019-02-21 01:57:43 -08:00
{
}
2021-12-13 16:58:05 -07:00
/// <summary>
/// If the output of fpcalc should be cached to the filesystem.
2021-12-13 16:58:05 -07:00
/// </summary>
public bool CacheFingerprints { get; set; }
2019-03-10 08:53:30 +09:00
}