DataJosnRPCResponse.cs 337 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.Extension.DataResult.JsonRpcResponse
  5. {
  6. public class DataJosnRPCResponse<T> : BaseJosnRPCResponse
  7. {
  8. public DataJosnRPCResponse() {
  9. result= new JsonRPCResult<T>();
  10. }
  11. public JsonRPCResult<T> result { get; set; }
  12. }
  13. }