283e98faa0
* Fix building for 2023 revit fakes * add Revit 2022 * fmt
20 lines
574 B
C#
20 lines
574 B
C#
namespace Autodesk.Revit.DB;
|
|
|
|
public partial class KeyBasedTreeEntryError : System.IDisposable
|
|
{
|
|
public KeyBasedTreeEntryError() { }
|
|
|
|
public virtual Autodesk.Revit.DB.KeyBasedTreeEntry GetEntry() => throw new System.NotImplementedException();
|
|
|
|
public virtual void Dispose() => throw new System.NotImplementedException();
|
|
|
|
public virtual System.Boolean IsValidObject
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
public virtual Autodesk.Revit.DB.KeyBasedTreeEntryErrorType ErrorType
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
}
|