I think my previous question was too vague. Let me try again.
I'm trying to hold user information by creating a singleton. After a bit of research, this is what I understood.
     Class UserInfo {
             var userFirstName: String? 
             var userLastName: String?
             /*I'll add all other variables here*/
    }
let sharedInfo = UserInfo()
Am I on right path?
 
    