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