using System.Collections.Generic; namespace Bookstore.Web.Areas.Admin.Models { public abstract class PaginatedViewModel { public int PageIndex { get; set; } public int PageSize { get; set; } public int PageCount { get; set; } public bool HasNextPage { get; set; } public bool HasPreviousPage { get; set; } public List PaginationButtons { get; set; } = new List(); public Dictionary RouteData { get; set; } = new Dictionary(); } }