// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace MediaBrowser.Controller.Events.Session { using Jellyfin.Data.Events; using MediaBrowser.Controller.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) { } } }