2
0

SessionEventArgs.cs 172 B

123456789
  1. using System;
  2. namespace MediaBrowser.Controller.Session
  3. {
  4. public class SessionEventArgs : EventArgs
  5. {
  6. public SessionInfo SessionInfo { get; set; }
  7. }
  8. }