-
-
Notifications
You must be signed in to change notification settings - Fork 19
Open
Labels
Description
For example:
[Server]
Name = 192.168.0.1
[Server.Alpha]
Name = 192.168.0.2
IsAlpha = true
[Server.Beta]
Name = 192.168.0.3
IsBeta = true
If describe it as json, it would look something like this:
{
"Server" : [
{
"Name" : "192.168.0.1",
"Alpha": {
"Name" : "192.168.0.2",
"IsAlpha" : true
},
"Beta": {
"Name" : "192.168.0.3",
"IsBeta" : "true",
}
}
]
}