Files
speckle-sharp-host-apis/Speckle.Revit2023.Fakes/generated/Autodesk.Revit.DB.Electrical.DistributionSysTypeSet.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
1.3 KiB
C#

namespace Autodesk.Revit.DB.Electrical;
public partial class DistributionSysTypeSet : Autodesk.Revit.DB.APIObject, System.Collections.IEnumerable
{
public DistributionSysTypeSet() { }
public virtual void Clear() => throw new System.NotImplementedException();
public virtual Autodesk.Revit.DB.Electrical.DistributionSysTypeSetIterator ForwardIterator() =>
throw new System.NotImplementedException();
public virtual Autodesk.Revit.DB.Electrical.DistributionSysTypeSetIterator ReverseIterator() =>
throw new System.NotImplementedException();
public virtual System.Collections.IEnumerator GetEnumerator() => throw new System.NotImplementedException();
public virtual System.Boolean Contains(Autodesk.Revit.DB.Electrical.DistributionSysType item) =>
throw new System.NotImplementedException();
public virtual System.Boolean Insert(Autodesk.Revit.DB.Electrical.DistributionSysType item) =>
throw new System.NotImplementedException();
public virtual System.Int32 Erase(Autodesk.Revit.DB.Electrical.DistributionSysType item) =>
throw new System.NotImplementedException();
public virtual System.Boolean IsEmpty
{
get => throw new System.NotImplementedException();
}
public virtual System.Int32 Size
{
get => throw new System.NotImplementedException();
}
}