Skip to content

Instantly share code, notes, and snippets.

@azamsharp
Created December 3, 2017 12:16
Show Gist options
  • Save azamsharp/bd778ef11ae5cf0174ca71b1d8a95961 to your computer and use it in GitHub Desktop.
Save azamsharp/bd778ef11ae5cf0174ca71b1d8a95961 to your computer and use it in GitHub Desktop.
User class
public class User {
var username :String!
var password :String!
var userId :String!
init(username :String, password :String) {
self.username = username
self.password = password
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment