2
0

SessionEventArgs.cs 204 B

1234567891011
  1. #pragma warning disable CS1591
  2. using System;
  3. namespace MediaBrowser.Controller.Session
  4. {
  5. public class SessionEventArgs : EventArgs
  6. {
  7. public SessionInfo SessionInfo { get; set; }
  8. }
  9. }