mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 22:36:12 +01:00
9 lines
175 B
C#
9 lines
175 B
C#
using System;
|
|
|
|
namespace MediaBrowser.Controller.Session
|
|
{
|
|
public class SessionEventArgs : EventArgs
|
|
{
|
|
public SessionInfo SessionInfo { get; set; }
|
|
}
|
|
}
|