14 lines
388 B
C#
14 lines
388 B
C#
// <copyright file="IForcedProvider.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
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
|
|
{
|
|
}
|
|
}
|