Created
January 23, 2019 07:52
-
-
Save meyusufdemirci/076488624c37594618e2625b13bf463d to your computer and use it in GitHub Desktop.
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 Contact { | |
var fullname: String | |
var gsm: String | |
init(fullname: String, gsm: String) { | |
self.fullname = fullname | |
self.gsm = gsm | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment