10 lines
280 B
C#
10 lines
280 B
C#
namespace Atomx.Common.Models
|
|
{
|
|
public class KeyValueTree
|
|
{
|
|
public string Label { get; set; } = string.Empty;
|
|
public string Value { get; set; } = string.Empty;
|
|
public List<KeyValueTree> Children { get; set; } = new List<KeyValueTree>();
|
|
}
|
|
}
|