DashboardInfo.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using MediaBrowser.Model.Session;
  2. using MediaBrowser.Model.System;
  3. using MediaBrowser.Model.Tasks;
  4. using System;
  5. using System.Collections.Generic;
  6. namespace MediaBrowser.WebDashboard.Api
  7. {
  8. /// <summary>
  9. /// Class DashboardInfo
  10. /// </summary>
  11. public class DashboardInfo
  12. {
  13. /// <summary>
  14. /// Gets or sets the system info.
  15. /// </summary>
  16. /// <value>The system info.</value>
  17. public SystemInfo SystemInfo { get; set; }
  18. /// <summary>
  19. /// Gets or sets the running tasks.
  20. /// </summary>
  21. /// <value>The running tasks.</value>
  22. public List<TaskInfo> RunningTasks { get; set; }
  23. /// <summary>
  24. /// Gets or sets the application update task id.
  25. /// </summary>
  26. /// <value>The application update task id.</value>
  27. public Guid ApplicationUpdateTaskId { get; set; }
  28. /// <summary>
  29. /// Gets or sets the active connections.
  30. /// </summary>
  31. /// <value>The active connections.</value>
  32. public List<SessionInfoDto> ActiveConnections { get; set; }
  33. }
  34. }