Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- 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; }
- }
- }
|