blob: 35fa29d94d25d6ba9fc2fc0a94f84fe53c6950ec (
plain)
1
2
3
4
5
6
7
8
9
|
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
{
}
}
|