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; } }