12345678910111213141516171819202122 |
- using RestSharp;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace WisdomClient.data
- {
- public class PageObject
- {
- public long total { get; set; }
- public int size { get; set; }
- public int current { get; set; }
- public bool searchCount { get; set; }
- public int pages { get; set; }
- public JsonArray records { get; set; }
- }
- }
|