Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace FinalPaginationTask.Models
- {
- public class SortAndPage // used for sorting and paging
- {
- public string SortField{ get; set; }
- public string SortDirection { get; set; }
- public int PageSize { get; set; }
- public int PageCount { get; set; }
- public int StartPage { get; set; }
- public int LastPage { get; set; }
- public int CurrentPageIndex { get; set; }
- public Pager Pager { get; set; }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment