mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 09:59:06 -07:00
14 lines
223 B
C#
14 lines
223 B
C#
#nullable disable
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
using System;
|
|
|
|
namespace MediaBrowser.Controller.Session
|
|
{
|
|
public class SessionEventArgs : EventArgs
|
|
{
|
|
public SessionInfo SessionInfo { get; set; }
|
|
}
|
|
}
|