I\'m looking at the source code for the MvcContrib Grid and see the class declared as:
public class Grid : IGrid where T : class
It's a generic type constraint. It specifies that the type T has to be a reference type, i.e. a class and not a structure.
T