mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-06 10:16:18 +00:00
Migrate ActivityLogEntryPoint.OnSessionStarted to IEventConsumer
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using Jellyfin.Data.Events;
|
||||
using MediaBrowser.Controller.Session;
|
||||
|
||||
namespace MediaBrowser.Controller.Events.Session
|
||||
{
|
||||
/// <summary>
|
||||
/// An event that fires when a session is started.
|
||||
/// </summary>
|
||||
public class SessionStartedEventArgs : GenericEventArgs<SessionInfo>
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="SessionStartedEventArgs"/> class.
|
||||
/// </summary>
|
||||
/// <param name="arg">The session info.</param>
|
||||
public SessionStartedEventArgs(SessionInfo arg) : base(arg)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user