Skip to content

Instantly share code, notes, and snippets.

@DanishAmjad12
Last active July 23, 2018 08:35
Show Gist options
  • Save DanishAmjad12/a799bccdf2facf7a36fb5729899316e4 to your computer and use it in GitHub Desktop.
Save DanishAmjad12/a799bccdf2facf7a36fb5729899316e4 to your computer and use it in GitHub Desktop.
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