blob: a11e565bc68258cc4cbd4331660c2ef1084aac34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
using MediaBrowser.Model.Connectivity;
using MediaBrowser.Model.DTO;
using MediaBrowser.Model.System;
using MediaBrowser.Model.Tasks;
using System;
namespace MediaBrowser.WebDashboard.Api
{
/// <summary>
/// Class DashboardInfo
/// </summary>
public class DashboardInfo
{
/// <summary>
/// Gets or sets the system info.
/// </summary>
/// <value>The system info.</value>
public SystemInfo SystemInfo { get; set; }
/// <summary>
/// Gets or sets the running tasks.
/// </summary>
/// <value>The running tasks.</value>
public TaskInfo[] RunningTasks { get; set; }
/// <summary>
/// Gets or sets the application update task id.
/// </summary>
/// <value>The application update task id.</value>
public Guid ApplicationUpdateTaskId { get; set; }
/// <summary>
/// Gets or sets the active connections.
/// </summary>
/// <value>The active connections.</value>
public ClientConnectionInfo[] ActiveConnections { get; set; }
/// <summary>
/// Gets or sets the users.
/// </summary>
/// <value>The users.</value>
public DtoUser[] Users { get; set; }
}
}
|