1b31dc18e8
* fixes * Generate empty constructors for testing
15 lines
348 B
C#
15 lines
348 B
C#
namespace Autodesk.Revit.UI;
|
|
|
|
public partial class FileSaveDialog : Autodesk.Revit.UI.FileDialog
|
|
{
|
|
public FileSaveDialog() { }
|
|
|
|
public FileSaveDialog(System.String filter) => throw new System.NotImplementedException();
|
|
|
|
public virtual System.String InitialFileName
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
}
|