IRunBeforeStartup.cs 235 B

123456789
  1. namespace MediaBrowser.Controller.Plugins
  2. {
  3. /// <summary>
  4. /// Indicates that a <see cref="IServerEntryPoint"/> should be invoked as a pre-startup task.
  5. /// </summary>
  6. public interface IRunBeforeStartup
  7. {
  8. }
  9. }