mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-28 02:22:41 -04:00
d461e3912a
Co-authored-by: Bond-009 <bond.009@outlook.com>
12 lines
301 B
C#
12 lines
301 B
C#
#pragma warning disable CA1040 // Avoid empty interfaces
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
{
|
|
/// <summary>
|
|
/// This is a marker interface that will cause a provider to run even if an item is locked from changes.
|
|
/// </summary>
|
|
public interface IForcedProvider
|
|
{
|
|
}
|
|
}
|