Skip to content

Instantly share code, notes, and snippets.

@badrinathvm
Last active October 14, 2017 22:29
Show Gist options
  • Save badrinathvm/718e394a0340f2bd430bfd664d2f82e6 to your computer and use it in GitHub Desktop.
Save badrinathvm/718e394a0340f2bd430bfd664d2f82e6 to your computer and use it in GitHub Desktop.
Watch Class
import Foundation
struct Watch {
var name:String
var price: Double
var brand: Brand
}
struct Brand {
var id: Int
var name: String
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment