Skip to content

Commit

Permalink
fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewheumann committed Jan 7, 2024
1 parent d51248f commit e7923d6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using Elements.Geometry;
using Elements.Geometry.Solids;
using LayoutFunctionCommon;
using Newtonsoft.Json;

namespace Elements
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using Elements.Geometry;
using Newtonsoft.Json;

namespace Elements
{
Expand Down
3 changes: 3 additions & 0 deletions SpaceConfigurationFromModel/dependencies/SpaceBoundary.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
using Elements.Geometry;
using Newtonsoft.Json;
namespace Elements
{
public partial class SpaceBoundary : GeometricElement, ISpaceBoundary
{
public Vector3? ParentCentroid { get; set; }

[JsonProperty("Config Id")]
public string ConfigId { get; set; }
}
}

0 comments on commit e7923d6

Please sign in to comment.