283e98faa0
* Fix building for 2023 revit fakes * add Revit 2022 * fmt
15 lines
373 B
C#
15 lines
373 B
C#
namespace Autodesk.Revit.DB;
|
|
|
|
public partial class InSessionViewSheetSet : Autodesk.Revit.DB.IViewSheetSet, System.IDisposable
|
|
{
|
|
public InSessionViewSheetSet() { }
|
|
|
|
public virtual void Dispose() => throw new System.NotImplementedException();
|
|
|
|
public virtual Autodesk.Revit.DB.ViewSet Views
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
}
|