Hi! Welcome to the community!
You can open new threads to ask questions, you’ll get an answer a lot quicker if you do that.
The reason why you are getting that error is because, in fact, there’s no such thing as deltaTime in Time, let me explain further: Your class is named Time, there’s no such thing as deltaTime inside it, the UnityEngine Time class in the other hand does have a deltaTime definition.
Let me explain with an analogy: Imagine you are in a party looking for a guy named Scott, the guy has your watch, but there are two Scotts in the party, you are basically asking the wrong Scott, the one that doesn’t have your watch, to give you back your watch.
To solve your issue just rename your class in code and the file that is in your Assets Folder in Unity, use the same name.
//Instead of:
public class Time : MonoBehaviour
//Use another name, whichever you want
public class AnotherName : MonoBehaviour
Try to avoid using names that are already being used by any of the namespaces (UnityEngine, System.Collection) within your class to avoid this kind of situations.
There’s another solution, which is asking for Scott Pilgrim instead of simply Scott, but let’s stay for now with just changing your class’s name.