Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
-
- namespace Models.List
- {
- public interface IPagingList<T>
- {
- public IList<T> Data { get; set; }
- public int TotalRecords { get; set; }
- public int TotalPages { get; set; }
- public int PerPage { get; set; }
- public int Page { get; set; }
- }
- }
|