You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

16 lines
373 B

  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using System.Threading.Tasks;
  4. namespace Models.List
  5. {
  6. public interface IPagingList<T>
  7. {
  8. public IList<T> Data { get; set; }
  9. public int TotalRecords { get; set; }
  10. public int TotalPages { get; set; }
  11. public int PerPage { get; set; }
  12. public int Page { get; set; }
  13. }
  14. }