namespace Day8; public interface INode { string Name { get; } Node? Left { get; } Node? Right { get; } bool IsStart { get; } bool IsEnd { get; } }