283e98faa0
* Fix building for 2023 revit fakes * add Revit 2022 * fmt
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();
|
|
}
|