Skip to content

Instantly share code, notes, and snippets.

@farzadshbfn
Last active September 14, 2018 10:29
Show Gist options
  • Save farzadshbfn/563cc1963f7964c7cf9c2cfc7a3d98b5 to your computer and use it in GitHub Desktop.
Save farzadshbfn/563cc1963f7964c7cf9c2cfc7a3d98b5 to your computer and use it in GitHub Desktop.
struct UserProfile {
let name: String
let lastName: String
let cellNumber: String
let email: String?
}
extension UserProfile {
var fullName: String {
return name + " " + cellNumber
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment