using Jellyfin.Data.Events; using MediaBrowser.Controller.Session; namespace MediaBrowser.Controller.Events.Session { /// /// An event that fires when a session is ended. /// public class SessionEndedEventArgs : GenericEventArgs { /// /// Initializes a new instance of the class. /// /// The session info. public SessionEndedEventArgs(SessionInfo arg) : base(arg) { } } }