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

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

29 lines
692 B
C#

namespace Autodesk.Revit.DB.Analysis;
public partial class SystemsAnalysisOptions : System.IDisposable
{
public SystemsAnalysisOptions() { }
public virtual void Dispose() => throw new System.NotImplementedException();
public virtual System.Boolean IsValidObject
{
get => throw new System.NotImplementedException();
}
public virtual System.String OutputFolder
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.String WeatherFile
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.String WorkflowFile
{
get => throw new System.NotImplementedException();
set { }
}
}