Skip to content

Instantly share code, notes, and snippets.

@Rashidium
Created April 21, 2019 21:01
Show Gist options
  • Save Rashidium/e9b45d3de6a2195d1f229992c4cd4065 to your computer and use it in GitHub Desktop.
Save Rashidium/e9b45d3de6a2195d1f229992c4cd4065 to your computer and use it in GitHub Desktop.
Decodable User struct
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