PageObject.cs 434 B

12345678910111213141516171819202122
  1. using RestSharp;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace WisdomClient.data
  7. {
  8. public class PageObject
  9. {
  10. public long total { get; set; }
  11. public int size { get; set; }
  12. public int current { get; set; }
  13. public bool searchCount { get; set; }
  14. public int pages { get; set; }
  15. public JsonArray records { get; set; }
  16. }
  17. }