namespace Atomx.Common.Models { public class KeyValueTree { public string Label { get; set; } = string.Empty; public string Value { get; set; } = string.Empty; public IList Children { get; set; } = new List(); } }