Files
speckle-sharp-host-apis/Speckle.Revit2023.Fakes/generated/Autodesk.Revit.DB.Structure.LoadComponent.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

27 lines
726 B
C#

namespace Autodesk.Revit.DB.Structure;
public partial class LoadComponent : System.IDisposable
{
public LoadComponent() { }
public LoadComponent(Autodesk.Revit.DB.ElementId loadCaseOrCombinationId, System.Double factor) =>
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.Double Factor
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Autodesk.Revit.DB.ElementId LoadCaseOrCombinationId
{
get => throw new System.NotImplementedException();
set { }
}
}