DataJosnRPCResponse.cs 405 B

12345678910111213141516
  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 DataJosnRPCResponse<T> : BaseJosnRPCResponse
  9. {
  10. public DataJosnRPCResponse() {
  11. result= new JsonRPCResult<T>();
  12. }
  13. public JsonRPCResult<T> result { get; set; }
  14. }
  15. }