123456789101112131415161718192021222324252627282930313233 |
- using JsonRPC4.Common;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace JsonRPC4.Router
- {
- public class RpcRequest
- {
- public RpcId Id
- {
- get;
- }
- public string Method
- {
- get;
- }
- public RpcParameters Parameters
- {
- get;
- }
- public RpcRequest(RpcId id, string method, RpcParameters parameters = null)
- {
- Id = id;
- Method = method;
- Parameters = parameters;
- }
- }
- }
|