283e98faa0
* Fix building for 2023 revit fakes * add Revit 2022 * fmt
23 lines
701 B
C#
23 lines
701 B
C#
namespace Autodesk.Revit.DB;
|
|
|
|
public partial class AddInId : System.IDisposable
|
|
{
|
|
public AddInId() { }
|
|
|
|
public AddInId(System.Guid val) => throw new System.NotImplementedException();
|
|
|
|
public virtual System.String GetAddInNameFromDocument(Autodesk.Revit.DB.Document aDoc) =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual System.Guid GetGUID() => throw new System.NotImplementedException();
|
|
|
|
public virtual System.String GetAddInName() => throw new System.NotImplementedException();
|
|
|
|
public virtual void Dispose() => throw new System.NotImplementedException();
|
|
|
|
public virtual System.Boolean IsValidObject
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
}
|