Skip to content

Instantly share code, notes, and snippets.

@giovani-pereira-ifood
Last active August 28, 2020 08:36
Show Gist options
  • Save giovani-pereira-ifood/9e51fe7a2387e94a5394585e66864d82 to your computer and use it in GitHub Desktop.
Save giovani-pereira-ifood/9e51fe7a2387e94a5394585e66864d82 to your computer and use it in GitHub Desktop.
struct User: Codable {
let name: String
let color: Color
enum Color: String, Codable, UnknownCase {
static let unknwonCase: Self = .unknown
case red = "RED"
case yelllow = "YELLOW"
case blue = "BLUE"
case unknown
}
}
@frouo
Copy link

frouo commented Aug 28, 2020

Just a little typo here on unknwonCase 😉

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment