IEventConsumer.cs 210 B

1234567891011
  1. using System;
  2. using System.Threading.Tasks;
  3. namespace MediaBrowser.Controller.Events
  4. {
  5. public interface IEventConsumer<in T>
  6. where T : EventArgs
  7. {
  8. Task OnEvent(T eventArgs);
  9. }
  10. }