SessionEndedEventArgs.cs 570 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 ended.
  7. /// </summary>
  8. public class SessionEndedEventArgs : GenericEventArgs<SessionInfo>
  9. {
  10. /// <summary>
  11. /// Initializes a new instance of the <see cref="SessionEndedEventArgs"/> class.
  12. /// </summary>
  13. /// <param name="arg">The session info.</param>
  14. public SessionEndedEventArgs(SessionInfo arg) : base(arg)
  15. {
  16. }
  17. }
  18. }