-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSystemSettings.cs
More file actions
39 lines (35 loc) · 1.21 KB
/
SystemSettings.cs
File metadata and controls
39 lines (35 loc) · 1.21 KB
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
// -------------------------------------------------------------------------
// Copyright (c) Mecalc (Pty) Limited. All rights reserved.
// -------------------------------------------------------------------------
using QProtocol.Advanced;
using System;
using System.Collections.Generic;
namespace QProtocol
{
/// <summary>
/// This class can be used with the /system/settings/ endpoint to deserialize the response received.
/// </summary>
[Serializable]
public class SystemSettings : ItemSettings
{
/// <summary>
/// Gets or sets a list of child instances hosted by this item.
/// </summary>
public List<Item> Children { get; set; }
/// <summary>
/// Creates a new instance of the <see cref="SystemSettings"/> class.
/// </summary>
public SystemSettings()
: base()
{
}
/// <summary>
/// Creates a new instance of the <see cref="SystemSettings"/> class.
/// </summary>
/// <param name="itemInfo">An instance of the item information which will be copied to this instance.</param>
public SystemSettings(ItemInfo itemInfo)
: base(itemInfo)
{
}
}
}