using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace FilmsRUsOnline.Models { public class PaginationInfo { public int CurrPage { get; set; } public int NumItems { get; set; } public int ItemsPerPage { get; set; } public int NumPages { get { return (int)Math.Ceiling((double)NumItems / ItemsPerPage); } } } }