1234567891011121314151617 |
-
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.SDK.Extension.DataResult.JsonRpcResponse
- {
-
- public class PageJosnRPCResponse<T> : BaseJosnRPCResponse
- {
- public PageJosnRPCResponse()
- {
- result = new PageJsonRPCResult<T>();
- }
- public PageJsonRPCResult<T> result { get; set; }
- }
- }
|