PageJosnRPCResponse.cs 350 B

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