I want to implement the following:
namespace PIMP.Web.TestForum.Models
{
public class ThreadModel : PagedList<T>
{
but I get ErrorMessage:
Cannot find type name or namespace 'T' (are you missing the using directive or assembly references?)
What should I do to avoid this?
source
share