1b31dc18e8
* fixes * Generate empty constructors for testing
17 lines
495 B
C#
17 lines
495 B
C#
namespace Autodesk.Revit.DB.Structure;
|
|
|
|
public partial class StructuralConnectionSettings : Autodesk.Revit.DB.Element
|
|
{
|
|
public StructuralConnectionSettings() { }
|
|
|
|
public static Autodesk.Revit.DB.Structure.StructuralConnectionSettings GetStructuralConnectionSettings(
|
|
Autodesk.Revit.DB.Document document
|
|
) => throw new System.NotImplementedException();
|
|
|
|
public virtual System.Boolean IncludeWarningControls
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
}
|