mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
10 lines
243 B
C#
10 lines
243 B
C#
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
|
|
{
|
|
}
|
|
}
|