chore
This commit is contained in:
9
Atomx.Common/Models/KeyValueTree.cs
Normal file
9
Atomx.Common/Models/KeyValueTree.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace Atomx.Common.Models
|
||||
{
|
||||
public class KeyValueTree
|
||||
{
|
||||
public string Key { get; set; } = string.Empty;
|
||||
public string Value { get; set; } = string.Empty;
|
||||
public List<KeyValueTree> Children { get; set; } = new List<KeyValueTree>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user