IRpcMethodResult.cs 262 B

12345678910111213
  1. using JsonRPC4.Common;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. namespace JsonRPC4.Router.Abstractions
  7. {
  8. public interface IRpcMethodResult
  9. {
  10. RpcResponse ToRpcResponse(RpcId id);
  11. }
  12. }