From c3230d5d91d21fcd00db83b327e24267ed33eddd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn?= Date: Sat, 25 Oct 2025 12:09:34 +0200 Subject: [PATCH] refactor: naming conflict --- src/Speckle.Sdk/Models/Collections/RootCollection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Speckle.Sdk/Models/Collections/RootCollection.cs b/src/Speckle.Sdk/Models/Collections/RootCollection.cs index 6c9d05d8..d9890721 100644 --- a/src/Speckle.Sdk/Models/Collections/RootCollection.cs +++ b/src/Speckle.Sdk/Models/Collections/RootCollection.cs @@ -19,7 +19,7 @@ public class RootCollection : Collection /// /// These are intended for model-level metadata such as total area, project information, or analysis results. /// - public Dictionary? properties + public Dictionary? rootProperties { get => this["properties"] as Dictionary; set => this["properties"] = value;