You can create default values for your member variables two ways. You can use the OnCreate() member function that we'll talk about later, or you can simply initialize them in the class definition:
class PersonPhone parent Person
local string phone = "Not Entered"
endclass