ConfusedPolarBear 1c55d749a3 Allow caching fpcalc results
Probably only useful during development, when the same files are being
fingerprinted repeatedly
2022-05-05 18:10:34 -05:00

26 lines
623 B
C#

using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using MediaBrowser.Model.Plugins;
namespace ConfusedPolarBear.Plugin.IntroSkipper.Configuration;
/// <summary>
/// Plugin configuration.
/// </summary>
public class PluginConfiguration : BasePluginConfiguration
{
/// <summary>
/// Initializes a new instance of the <see cref="PluginConfiguration"/> class.
/// </summary>
public PluginConfiguration()
{
}
/// <summary>
/// If the output of fpcalc should be cached to the filesystem.
/// </summary>
public bool CacheFingerprints { get; set; }
}