Ext.Net.SubmittedNode.SubmittedNode C# (CSharp) Method

SubmittedNode() private method

private SubmittedNode ( string path, string text, string nodeID, JsonObject attributes, List children ) : System.Collections.Generic
path string
text string
nodeID string
attributes JsonObject
children List
return System.Collections.Generic
        public SubmittedNode(string path, string text, string nodeID, JsonObject attributes, List<SubmittedNode> children)
        {
            this.path = path;
            this.nodeID = nodeID;
            this.text = text;
            this.attributes = attributes;
            this.children = children;
        }
SubmittedNode