Skip to content

Instantly share code, notes, and snippets.

@meyusufdemirci
Created January 23, 2019 07:52
Show Gist options
  • Save meyusufdemirci/076488624c37594618e2625b13bf463d to your computer and use it in GitHub Desktop.
Save meyusufdemirci/076488624c37594618e2625b13bf463d to your computer and use it in GitHub Desktop.
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