I want to implement like this:
namespace PIMP.Web.TestForum.Models
{
public class ThreadModel : PagedList<T>
{
but I am getting ErrorMessage:
The type or namespace name ‘T’ could not be found (are you missing a using directive or an assembly reference?)
What should I do to avoid it?
or change
Tto an actual type.