EmptyJosnRPCResponse.cs 314 B

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