From b67eb8d8af1e689e8560f06d75952cdedce6f5d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn?= Date: Mon, 27 Oct 2025 13:03:52 +0200 Subject: [PATCH] refactor: model properties to properties --- src/Speckle.Sdk/Models/Collections/RootCollection.cs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/Speckle.Sdk/Models/Collections/RootCollection.cs b/src/Speckle.Sdk/Models/Collections/RootCollection.cs index 17f61d7a..ace5979c 100644 --- a/src/Speckle.Sdk/Models/Collections/RootCollection.cs +++ b/src/Speckle.Sdk/Models/Collections/RootCollection.cs @@ -7,15 +7,8 @@ namespace Speckle.Sdk.Models.Collections; [SpeckleType("Speckle.Core.Models.Collections.RootCollection")] public class RootCollection : Collection { - /// - /// Parameterless constructor for deserialization. - /// public RootCollection() { } - /// - /// Constructor for a root collection. - /// - /// The human-readable name of this root collection public RootCollection(string name) : base(name) { } @@ -25,5 +18,5 @@ public class RootCollection : Collection /// /// These are intended for model-level metadata such as total area, project information, or analysis results. /// - public Dictionary? rootProperties { get; set; } + public Dictionary? properties { get; set; } }