using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Threading.Tasks; namespace JsonRPC4.Router { public class RpcMethodInfo { public MethodInfo Method { get; } public object[] Parameters { get; } public RpcMethodInfo(MethodInfo method, object[] parameters) { Method = method; Parameters = parameters; } } }