Created
December 17, 2017 18:22
-
-
Save kmkrn/cf70a37e8153d556bffec20e1dea3a36 to your computer and use it in GitHub Desktop.
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
class DogOwner { | |
var name: String | |
var dog: DogBreed | |
init(name: String, dog: DogBreed) { | |
self.name = name | |
self.dog = dog | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment