IForcedProvider.cs 243 B

123456789
  1. namespace MediaBrowser.Controller.Providers
  2. {
  3. /// <summary>
  4. /// This is a marker interface that will cause a provider to run even if an item is locked from changes.
  5. /// </summary>
  6. public interface IForcedProvider
  7. {
  8. }
  9. }