1b31dc18e8
* fixes * Generate empty constructors for testing
9 lines
204 B
C#
9 lines
204 B
C#
namespace Autodesk.Revit.DB;
|
|
|
|
public partial class FilePath : Autodesk.Revit.DB.ModelPath
|
|
{
|
|
public FilePath() { }
|
|
|
|
public FilePath(System.String path) => throw new System.NotImplementedException();
|
|
}
|