jellyfin/MediaBrowser.Controller/Session/SessionEventArgs.cs

10 lines
175 B
C#
Raw Normal View History

2014-04-06 19:53:23 +02:00
using System;
namespace MediaBrowser.Controller.Session
{
public class SessionEventArgs : EventArgs
{
public SessionInfo SessionInfo { get; set; }
}
}