mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-14 04:53:02 +03:00
(cherry picked from commit 406ae3e43a)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
28 lines
800 B
C#
28 lines
800 B
C#
using System;
|
|
using MediaBrowser.Model.Plugins;
|
|
|
|
namespace MediaBrowser.Common.Plugins
|
|
{
|
|
/// <summary>
|
|
/// Defines the <see cref="IHasPluginConfiguration" />.
|
|
/// </summary>
|
|
public interface IHasPluginConfiguration
|
|
{
|
|
/// <summary>
|
|
/// Gets the type of configuration this plugin uses.
|
|
/// </summary>
|
|
Type ConfigurationType { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the plugin's configuration.
|
|
/// </summary>
|
|
BasePluginConfiguration Configuration { get; }
|
|
|
|
/// <summary>
|
|
/// Completely overwrites the current configuration with a new copy.
|
|
/// </summary>
|
|
/// <param name="configuration">The configuration.</param>
|
|
void UpdateConfiguration(BasePluginConfiguration configuration);
|
|
}
|
|
}
|