-
-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathGetSystemConfigResult.cs
More file actions
40 lines (36 loc) · 856 Bytes
/
GetSystemConfigResult.cs
File metadata and controls
40 lines (36 loc) · 856 Bytes
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
using System.Collections.Generic;
using Resgrid.Config;
namespace Resgrid.Web.Services.Models.v4.Configs
{
/// <summary>
/// Gets Configuration Information for the Resgrid System
/// </summary>
public class GetSystemConfigResult : StandardApiResponseV4Base
{
/// <summary>
/// Response Data
/// </summary>
public GetSystemConfigResultData Data { get; set; }
/// <summary>
/// Default constructor
/// </summary>
public GetSystemConfigResult()
{
Data = new GetSystemConfigResultData();
}
}
/// <summary>
/// Information about the Resgrid System
/// </summary>
public class GetSystemConfigResultData
{
/// <summary>
/// Resgrid Datacenter Locations
/// </summary>
public List<ResgridSystemLocation> Locations { get; set; }
public GetSystemConfigResultData()
{
Locations = InfoConfig.Locations;
}
}
}