Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Session/SessionEventArgs.cs
Andrew Rabert a86b71899e Add GPL modules
2018-12-27 18:27:57 -05:00

10 lines
175 B
C#

using System;
namespace MediaBrowser.Controller.Session
{
public class SessionEventArgs : EventArgs
{
public SessionInfo SessionInfo { get; set; }
}
}