SessionUpdatesEventArgs.cs 289 B

12345678910111213
  1. using System;
  2. using MediaBrowser.Model.Session;
  3. namespace MediaBrowser.Model.ApiClient
  4. {
  5. /// <summary>
  6. /// Class SessionUpdatesEventArgs
  7. /// </summary>
  8. public class SessionUpdatesEventArgs : EventArgs
  9. {
  10. public SessionInfoDto[] Sessions { get; set; }
  11. }
  12. }