1b31dc18e8
* fixes * Generate empty constructors for testing
9 lines
218 B
C#
9 lines
218 B
C#
namespace Autodesk.Revit.UI;
|
|
|
|
public partial class TextBoxData : Autodesk.Revit.UI.RibbonItemData
|
|
{
|
|
public TextBoxData() { }
|
|
|
|
public TextBoxData(System.String name) => throw new System.NotImplementedException();
|
|
}
|