Last active
October 14, 2017 22:29
-
-
Save badrinathvm/718e394a0340f2bd430bfd664d2f82e6 to your computer and use it in GitHub Desktop.
Watch Class
This file contains 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
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