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