您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

16 行
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. }