From cc285e99ee2f44f3a381111f7b139209ff6f99c4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?O=C4=9Fuzhan=20Koral?=
<45078678+oguzhankoral@users.noreply.github.com>
Date: Mon, 16 Sep 2024 16:49:11 +0300
Subject: [PATCH] Add WorkspaceId to model card (#236)
it is needed to store information between sessions
---
DUI3/Speckle.Connectors.DUI/Models/Card/ModelCard.cs | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/DUI3/Speckle.Connectors.DUI/Models/Card/ModelCard.cs b/DUI3/Speckle.Connectors.DUI/Models/Card/ModelCard.cs
index 6dbd4753e..0918b22ab 100644
--- a/DUI3/Speckle.Connectors.DUI/Models/Card/ModelCard.cs
+++ b/DUI3/Speckle.Connectors.DUI/Models/Card/ModelCard.cs
@@ -21,6 +21,11 @@ public class ModelCard : DiscriminatedObject
///
public string? ProjectId { get; set; }
+ ///
+ /// Workspace id.
+ ///
+ public string? WorkspaceId { get; set; }
+
///
/// Account id that model card created with it initially.
///