mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 22:43:07 +03:00
12 lines
210 B
C#
12 lines
210 B
C#
|
|
using System;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace MediaBrowser.Controller.Events
|
|||
|
|
{
|
|||
|
|
public interface IEventConsumer<in T>
|
|||
|
|
where T : EventArgs
|
|||
|
|
{
|
|||
|
|
Task OnEvent(T eventArgs);
|
|||
|
|
}
|
|||
|
|
}
|