Files
speckle-sharp-host-apis/Speckle.Revit2023.Fakes/generated/Autodesk.Revit.DB.Structure.ConnectionInputPointInfo.s.cs
Adam Hathcock 1b31dc18e8 Generate empty constructors for testing (#27)
* fixes

* Generate empty constructors for testing
2024-07-01 14:58:01 +00:00

35 lines
901 B
C#

namespace Autodesk.Revit.DB.Structure;
public partial class ConnectionInputPointInfo : System.IDisposable
{
public ConnectionInputPointInfo() { }
public ConnectionInputPointInfo(
System.String ptSelectionText,
System.Int32 inputMemberIndex,
System.String restrictionType
) => throw new System.NotImplementedException();
public virtual void Dispose() => throw new System.NotImplementedException();
public virtual System.Boolean IsValidObject
{
get => throw new System.NotImplementedException();
}
public virtual System.String RestrictionType
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.Int32 InputMemberIndex
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.String PointSelectionText
{
get => throw new System.NotImplementedException();
set { }
}
}