19 lines
422 B
C#
19 lines
422 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WinformDevFramework.Models.Common
|
|
{
|
|
public interface IPageList<T> : IList<T>
|
|
{
|
|
int PageIndex { get; }
|
|
int PageSize { get; }
|
|
int TotalCount { get; }
|
|
int TotalPages { get; }
|
|
bool HasPreviousPage { get; }
|
|
bool HasNextPage { get; }
|
|
}
|
|
}
|