public void AddChild(ServerObject child) { childs.Add(child); }
public ServerObject(ServerObject parent) { this.parent = parent; childs = new List <ServerObject>(); components = new Dictionary <Type, object>(); }