added things

This commit is contained in:
szabomarton
2025-03-14 10:51:00 +01:00
parent 4287c44e6e
commit 1ebc6c67b6
36 changed files with 314 additions and 267 deletions

View File

@@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Program
{
internal class Doboz
{
public string Type { get; set; }
public Doboz Children = null;
public Doboz Parent = null;
public Doboz(string Type) {
this.Type = Type;
}
public void AddChildren(Doboz doboz)
{
doboz.Parent = this;
this.Children = doboz;
}
}
}