From 9a879fd1ac0050368eb433fac165fb6b02a68a78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn?= Date: Sat, 25 Oct 2025 13:35:58 +0200 Subject: [PATCH] fix: parameterless constructor --- src/Speckle.Sdk/Models/Collections/RootCollection.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Speckle.Sdk/Models/Collections/RootCollection.cs b/src/Speckle.Sdk/Models/Collections/RootCollection.cs index d9890721..b89cc7b7 100644 --- a/src/Speckle.Sdk/Models/Collections/RootCollection.cs +++ b/src/Speckle.Sdk/Models/Collections/RootCollection.cs @@ -7,6 +7,11 @@ 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. ///