mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-08 16:36:16 +01:00
11 lines
210 B
C#
11 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);
|
|
}
|
|
}
|