ApiExportAttribute.cs 225 B

1234567891011
  1. namespace PixiEditor.Extensions.Wasm;
  2. internal class ApiExportAttribute : Attribute
  3. {
  4. public string ExportName { get; }
  5. public ApiExportAttribute(string exportName)
  6. {
  7. ExportName = exportName;
  8. }
  9. }