What type of field can store any type of class c#

if we have 4 different classes

Public class Life(){} 
Public class Leaves(){} 
Public class Cheats(){} 
Public class Attack(){} 

public /*some field*/ classType;

what should we place at “come field” in order for any one of the four classes to be able to be stored in it ?

System.Object