TokenJosnRPCResponse.cs 414 B

1234567891011121314151617
  1. using MessagePack;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace TEAMModelOS.SDK.Extension.DataResult.JsonRpcResponse
  6. {
  7. [MessagePackObject(keyAsPropertyName: true)]
  8. public class TokenJosnRPCResponse<T>: BaseJosnRPCResponse
  9. {
  10. public TokenJosnRPCResponse()
  11. {
  12. result = new TokenJsonRPCResult<T>();
  13. }
  14. public TokenJsonRPCResult<T> result { get; set; }
  15. }
  16. }