ln.types/rpc/RPCCall.cs

20 lines
361 B
C#
Raw Permalink Normal View History

2019-08-03 12:50:41 +02:00
using System;
namespace ln.types.rpc
{
public class RPCCall
{
public object Identifier { get; set; }
public String ModuleName { get; set; }
public string MethodName { get; set; }
public object[] Parameters { get; set; }
public RPCCall()
{
Identifier = Guid.NewGuid();
}
}
}