Skip to content

Instantly share code, notes, and snippets.

@farzadshbfn
Last active May 4, 2020 12:43
Show Gist options
  • Save farzadshbfn/d0581c719f5850a0a097bdd8476d0ff4 to your computer and use it in GitHub Desktop.
Save farzadshbfn/d0581c719f5850a0a097bdd8476d0ff4 to your computer and use it in GitHub Desktop.
struct User {
typealias Id = String
let id: Id
let cellNumber: CellNumber
let isRegistered: Bool
let profile: Profile?
struct Profile {
let name: String
let lastName: String
let email: Email?
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment