1b31dc18e8
* fixes * Generate empty constructors for testing
10 lines
295 B
C#
10 lines
295 B
C#
namespace Autodesk.Revit.DB.ExtensibleStorage;
|
|
|
|
public partial class DataStorage : Autodesk.Revit.DB.Element
|
|
{
|
|
public DataStorage() { }
|
|
|
|
public static Autodesk.Revit.DB.ExtensibleStorage.DataStorage Create(Autodesk.Revit.DB.Document doc) =>
|
|
throw new System.NotImplementedException();
|
|
}
|