DashboardInfo.cs 1.0 KB

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