1b31dc18e8
* fixes * Generate empty constructors for testing
35 lines
901 B
C#
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 { }
|
|
}
|
|
}
|