Skip to content

Instantly share code, notes, and snippets.

@Stoff81
Created September 17, 2017 23:38
Show Gist options
  • Save Stoff81/d0633ad7fb6aa2c4b1c8f21b1382fcbc to your computer and use it in GitHub Desktop.
Save Stoff81/d0633ad7fb6aa2c4b1c8f21b1382fcbc to your computer and use it in GitHub Desktop.
class Drink: Decodable {
var type: String
var description: String
private enum CodingKeys: String, CodingKey {
case type
case description
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment