fb415d0416
.NET Build and Publish / build (push) Has been cancelled
* fix issue with basetype being null * add Rhino.FileIO properly * update csharpier
13 lines
236 B
C#
13 lines
236 B
C#
namespace Rhino.FileIO;
|
|
|
|
public partial class FilePdfEventArgs : System.EventArgs
|
|
{
|
|
public FilePdfEventArgs() { }
|
|
|
|
public virtual Rhino.FileIO.FilePdf Pdf
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
}
|