mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-23 18:19:40 +00:00
9 lines
200 B
C#
9 lines
200 B
C#
namespace Microsoft.AspNet.NodeServices {
|
|
public class NodeInvocationInfo
|
|
{
|
|
public string ModuleName;
|
|
public string ExportedFunctionName;
|
|
public object[] Args;
|
|
}
|
|
}
|