Files
speckle-sharp-host-apis/Speckle.Revit2022.Fakes/generated/Autodesk.Revit.DB.Analysis.HVACLoadBuildingType.s.cs
T
Adam Hathcock 283e98faa0 Revit 2022 (#32)
* Fix building for 2023 revit fakes

* add Revit 2022

* fmt
2024-07-18 08:49:17 +01:00

40 lines
1.2 KiB
C#

namespace Autodesk.Revit.DB.Analysis;
public partial class HVACLoadBuildingType : Autodesk.Revit.DB.Analysis.HVACLoadType
{
public HVACLoadBuildingType() { }
public static Autodesk.Revit.DB.Analysis.HVACLoadBuildingType Create(
Autodesk.Revit.DB.Document document,
System.String name
) => throw new System.NotImplementedException();
public virtual System.Boolean IsNameUnique(System.String name) => throw new System.NotImplementedException();
public static System.Boolean IsNameUnique(Autodesk.Revit.DB.Document document, System.String name) =>
throw new System.NotImplementedException();
public static System.Boolean IsValidTime(System.String hourMinute) => throw new System.NotImplementedException();
public virtual System.Double UnoccupiedCoolingSetPoint
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.String ClosingTime
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.String OpeningTime
{
get => throw new System.NotImplementedException();
set { }
}
public virtual System.String BuildingTypeName
{
get => throw new System.NotImplementedException();
set { }
}
}