// // 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 started. /// public class SessionStartedEventArgs : GenericEventArgs { /// /// Initializes a new instance of the class. /// /// The session info. public SessionStartedEventArgs(SessionInfo arg) : base(arg) { } } }