SessionEventArgs.cs 223 B

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