Last active
June 5, 2020 10:38
-
-
Save Bellaposa/5197ccbd366b67d02e05ca33547ad2a3 to your computer and use it in GitHub Desktop.
Person
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
class Person: NSObject { | |
@objc let name: String | |
@objc let surname: String | |
init(name: String, surname: String) { | |
self.name = name | |
self.surname = surname | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment