JosnRPCResponse.cs 311 B

123456789101112131415
  1. 
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace TEAMModelOS.SDK.Extension.DataResult.JsonRpcResponse
  6. {
  7. public class JosnRPCResponse<T>:BaseJosnRPCResponse
  8. {
  9. public T result { get; set; }
  10. public ErrorModel error { get; set; } = null;
  11. }
  12. }