PageJosnRPCResponse.cs 344 B

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