SessionStartedEventArgs.cs 578 B

12345678910111213141516171819
  1. using Jellyfin.Data.Events;
  2. using MediaBrowser.Controller.Session;
  3. namespace MediaBrowser.Controller.Events.Session
  4. {
  5. /// <summary>
  6. /// An event that fires when a session is started.
  7. /// </summary>
  8. public class SessionStartedEventArgs : GenericEventArgs<SessionInfo>
  9. {
  10. /// <summary>
  11. /// Initializes a new instance of the <see cref="SessionStartedEventArgs"/> class.
  12. /// </summary>
  13. /// <param name="arg">The session info.</param>
  14. public SessionStartedEventArgs(SessionInfo arg) : base(arg)
  15. {
  16. }
  17. }
  18. }