Skip to content

Commit

Permalink
Fix for Revit 2022
Browse files Browse the repository at this point in the history
  • Loading branch information
kike-garbo committed Dec 17, 2024
1 parent 77f1cea commit 22116ad
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/RhinoInside.Revit.External/DB/AnalyticalStructuralRole.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
namespace Autodesk.Revit.DB.Structure
{
#if !REVIT_2023
public enum AnalyticalStructuralRole
{
Unset = -1,
StructuralRoleBeam = 0,
StructuralRoleColumn = 1,
StructuralRoleMember = 3,
StructuralRoleGirder = 4,
StructuralRoleFloor = 5,
StructuralRoleWall = 6,
StructuralRolePanel = 7
}
#endif
}

0 comments on commit 22116ad

Please sign in to comment.