283e98faa0
* Fix building for 2023 revit fakes * add Revit 2022 * fmt
23 lines
570 B
C#
23 lines
570 B
C#
namespace Autodesk.Revit.UI;
|
|
|
|
public partial class ExternalCommandData : Autodesk.Revit.DB.APIObject
|
|
{
|
|
public ExternalCommandData() { }
|
|
|
|
public virtual System.Collections.Generic.IDictionary<System.String, System.String> JournalData
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual Autodesk.Revit.DB.View View
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual Autodesk.Revit.UI.UIApplication Application
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
}
|