Skip to content

Instantly share code, notes, and snippets.

@wisnukurniawan
Created January 13, 2017 22:49
Show Gist options
  • Save wisnukurniawan/f0587520c7cce04cbadcb092c1b31829 to your computer and use it in GitHub Desktop.
Save wisnukurniawan/f0587520c7cce04cbadcb092c1b31829 to your computer and use it in GitHub Desktop.
Retrofit2
/**
* Created by wisnu on 14/01/2017.
*/
public class DataRepo {
@SerializedName("login")
String login;
@SerializedName("contributions")
int contributions;
public String getLogin() {
return login;
}
public int getContributions() {
return contributions;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment