namespace HrynCo.Common.Tree; public interface ITreeNode where TKey : struct { TKey Id { get; } TKey? ParentId { get; } }