Files
speckle-sharp-host-apis/Speckle.Revit2023.Fakes/generated/Autodesk.Revit.UI.ColorSelectionDialog.s.cs
Adam Hathcock 1b31dc18e8 Generate empty constructors for testing (#27)
* fixes

* Generate empty constructors for testing
2024-07-01 14:58:01 +00:00

25 lines
687 B
C#

namespace Autodesk.Revit.UI;
public partial class ColorSelectionDialog : System.IDisposable
{
public ColorSelectionDialog() { }
public virtual Autodesk.Revit.UI.ItemSelectionDialogResult Show() => throw new System.NotImplementedException();
public virtual void Dispose() => throw new System.NotImplementedException();
public virtual System.Boolean IsValidObject
{
get => throw new System.NotImplementedException();
}
public virtual Autodesk.Revit.DB.Color OriginalColor
{
get => throw new System.NotImplementedException();
set { }
}
public virtual Autodesk.Revit.DB.Color SelectedColor
{
get => throw new System.NotImplementedException();
}
}