Skip to content

Commit

Permalink
Readded revit wall level setter (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
JR-Morgan authored Jul 10, 2024
1 parent ea68a24 commit cb14c43
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Speckle.Objects/BuiltElements/Revit/RevitWall.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,12 @@ public RevitWall(
public Base? parameters { get; set; }
public string? elementId { get; set; }

public new Level? level
{
get => base.level;
set => base.level = value;
}

#region Schema Info Constructors

[SchemaInfo(
Expand Down

0 comments on commit cb14c43

Please sign in to comment.