public ZookeeperTreeNodeModel(string displayName, string queryPath, ZookeeperTreeNodeModel root, Stat stat) : this() { this.QueryPath = queryPath; this.JoinPath = queryPath == "/" ? string.Empty : queryPath; this.Root = root; this.Stat = stat; this.DisplayName = displayName; }
public ZookeeperTreeNodeModel(string displayName, string queryPath, ZookeeperTreeNodeModel root) : this(displayName, queryPath, root, null) { }