ListApiResponse.cs 313 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using wispro.sp.entity;
  7. namespace wispro.sp.share
  8. {
  9. public class ListApiResponse<T>
  10. {
  11. public List<T> Results { get; set; }
  12. public int TotalCount { get; set; }
  13. }
  14. }