Why is PunTurnManager not recognized in another class?

I am trying to make a turn based board game. I am trying to access the PunTurnManager class in another class but it is not being recognized.152413-error-unity-3.png

Is the PunTurnManager under a namespace? because then you need to do
using namespace_name; at the start of the script.