Last active
September 14, 2018 10:20
-
-
Save farzadshbfn/250e2bd7849df6bfa54db9bdac9b3caf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
typealias Email = String | |
typealias CellNumber = String | |
struct UserProfile { | |
let name: String | |
let lastName: String | |
let cellNumber: CellNumber | |
let email: Email? | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment