using System.Collections.Generic; namespace Model { public class NodeProto { public int nodeId; public string name; public string describe = ""; public BehaviorTreeArgsDict args_dict = new BehaviorTreeArgsDict(); public List children = new List(); public List Children { get { return this.children; } set { this.children = value; } } } }