blob: 9e35b00ad630d9f68121318037a352282212de80 (
plain)
1
2
3
4
5
6
7
8
9
10
|
namespace MediaBrowser.Controller.Providers
{
/// <summary>
/// This is a marker interface that will cause a provider to run even if IsLocked=true
/// </summary>
public interface IForcedProvider
{
}
}
|