Skip to content

Instantly share code, notes, and snippets.

@Quaggie
Created March 14, 2018 17:21
Show Gist options
  • Save Quaggie/6a9b4e395d8c2eba0750c6b869fd45ca to your computer and use it in GitHub Desktop.
Save Quaggie/6a9b4e395d8c2eba0750c6b869fd45ca to your computer and use it in GitHub Desktop.
struct Motorcycle {
let image: UIImage
let name: String
let type: MotorcycleType
}
enum MotorcycleType: String {
case sport = "Sport bike"
case bigTrail = "Big Trail"
case custom = "Custom"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment