IRunBeforeStartup.cs 292 B

1234567891011
  1. #pragma warning disable CA1040 // Avoid empty interfaces
  2. namespace MediaBrowser.Controller.Plugins
  3. {
  4. /// <summary>
  5. /// Indicates that a <see cref="IServerEntryPoint"/> should be invoked as a pre-startup task.
  6. /// </summary>
  7. public interface IRunBeforeStartup
  8. {
  9. }
  10. }