IServerEntryPoint.cs 349 B

1234567891011121314151617181920
  1. using System;
  2. namespace MediaBrowser.Controller.Plugins
  3. {
  4. /// <summary>
  5. /// Interface IServerEntryPoint
  6. /// </summary>
  7. public interface IServerEntryPoint : IDisposable
  8. {
  9. /// <summary>
  10. /// Runs this instance.
  11. /// </summary>
  12. void Run();
  13. }
  14. public interface IRunBeforeStartup
  15. {
  16. }
  17. }