mirror of
https://github.com/mrfluffy-dev/lpr.git
synced 2026-01-17 10:20:33 +00:00
Lets gooooo
This commit is contained in:
15
BusinessLogic/BinaryTreeNode.cs
Normal file
15
BusinessLogic/BinaryTreeNode.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user