Files
lpr/BusinessLogic/BinaryTreeNode.cs
Zastian Pretorius eb9f7c6c67 Lets gooooo
2022-08-02 12:42:49 +01:00

16 lines
358 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BusinessLogic
{
public class BinaryTreeNode
{
public BinaryTreeNode LeftNode { get; set; }
public BinaryTreeNode RightNode { get; set; }
public List<List<List<double>>> Data { get; set; }
}
}