fb415d0416
.NET Build and Publish / build (push) Has been cancelled
* fix issue with basetype being null * add Rhino.FileIO properly * update csharpier
28 lines
568 B
C#
28 lines
568 B
C#
namespace Rhino.FileIO;
|
|
|
|
public partial class File3dmNotes
|
|
{
|
|
public File3dmNotes() { }
|
|
|
|
public virtual System.String Notes
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual System.Boolean IsVisible
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual System.Boolean IsHtml
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual System.Drawing.Rectangle WindowRectangle
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
}
|