1b31dc18e8
* fixes * Generate empty constructors for testing
10 lines
277 B
C#
10 lines
277 B
C#
namespace Autodesk.Revit.UI;
|
|
|
|
public partial class SplitButtonData : Autodesk.Revit.UI.PulldownButtonData
|
|
{
|
|
public SplitButtonData() { }
|
|
|
|
public SplitButtonData(System.String name, System.String text)
|
|
: base(name, text) => throw new System.NotImplementedException();
|
|
}
|