Skip to content

Instantly share code, notes, and snippets.

@akshitzaveri
Created May 25, 2020 07:14
Show Gist options
  • Save akshitzaveri/a76be24b4a97b4fef63996777ad34329 to your computer and use it in GitHub Desktop.
Save akshitzaveri/a76be24b4a97b4fef63996777ad34329 to your computer and use it in GitHub Desktop.
struct Post {
let userID, id: Int
let title, body: String
}
extension Post: Decodable {
enum CodingKeys: String, CodingKey {
case userID = "userId"
case id, title, body
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment