using System; namespace Infrastructure.Application { public class PagedListModel : PagedList { public PagedListModel() { this.Query = (T)Activator.CreateInstance(typeof(T)); } public T Query { get; set; } public object Schema { get; set; } } }