Last active
July 23, 2018 08:35
-
-
Save DanishAmjad12/a799bccdf2facf7a36fb5729899316e4 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
package com.example.daamjad.databinding.bindingModels; | |
/** | |
* Created by daamjad on 1/25/2018. | |
*/ | |
public class UserModel | |
{ | |
private String firstName; | |
public UserModel(String firstName) { | |
this.firstName = firstName; | |
} | |
public String getFirstName() { | |
return firstName; | |
} | |
public void setFirstName(String firstName) { | |
this.firstName = firstName; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment