Last active
May 4, 2020 12:43
-
-
Save farzadshbfn/d0581c719f5850a0a097bdd8476d0ff4 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
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