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