diff --git a/clients/dotnet/ZB.MOM.WW.MxGateway.Client.Cli/MxGatewayClientCli.cs b/clients/dotnet/ZB.MOM.WW.MxGateway.Client.Cli/MxGatewayClientCli.cs index 1c3cfc7..0578372 100644 --- a/clients/dotnet/ZB.MOM.WW.MxGateway.Client.Cli/MxGatewayClientCli.cs +++ b/clients/dotnet/ZB.MOM.WW.MxGateway.Client.Cli/MxGatewayClientCli.cs @@ -1844,7 +1844,7 @@ public static class MxGatewayClientCli string indent = new(' ', level * 2); string suffix = hasChildrenHint is null ? $"(attrs={galaxyObject.Attributes.Count})" - : $"(attrs={galaxyObject.Attributes.Count}, hasChildren={hasChildrenHint.Value})"; + : $"(attrs={galaxyObject.Attributes.Count}, hasChildrenHint={hasChildrenHint.Value})"; return $"{indent}{galaxyObject.GobjectId}\t{galaxyObject.TagName}\t{galaxyObject.BrowseName}\t{suffix}"; } @@ -1853,7 +1853,7 @@ public static class MxGatewayClientCli return new { @object = GalaxyObjectToJsonElement(node.Object), - hasChildren = node.HasChildrenHint, + hasChildrenHint = node.HasChildrenHint, children = node.Children.Select(BrowseTreeNodeToJson).ToArray(), }; }