mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-23 10:08:57 +00:00
10 lines
257 B
C#
10 lines
257 B
C#
namespace Microsoft.AspNetCore.NodeServices.HostingModels
|
|
{
|
|
public class NodeInvocationInfo
|
|
{
|
|
public string ModuleName { get; set; }
|
|
public string ExportedFunctionName { get; set; }
|
|
public object[] Args { get; set; }
|
|
}
|
|
}
|