SessionUpdatesEventArgs.cs 263 B

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