INode.cs 179 B

12345678910
  1. namespace Day8;
  2. public interface INode
  3. {
  4. string Name { get; }
  5. Node? Left { get; }
  6. Node? Right { get; }
  7. bool IsStart { get; }
  8. bool IsEnd { get; }
  9. }