-
-
Save jarsen/70de1dc800cbd487da6b5827e7a50654 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 Student: Codable { | |
| var name: String | |
| var age: Int | |
| var email: String | |
| enum CodingKeys: String, CodingKey { | |
| case name | |
| case age = "student_age" | |
| case email | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment