Last active
August 28, 2020 08:36
-
-
Save giovani-pereira-ifood/9e51fe7a2387e94a5394585e66864d82 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 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 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just a little typo here on
unknwonCase
😉