Created
April 21, 2019 21:01
-
-
Save Rashidium/e9b45d3de6a2195d1f229992c4cd4065 to your computer and use it in GitHub Desktop.
Decodable User struct
This file contains 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
import Foundation | |
struct User: Decodable { | |
var username: String? | |
var name: String? | |
var surname: String? | |
var email: String? | |
var uid: String? | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment