Skip to content

Instantly share code, notes, and snippets.

@shelajev
Created January 15, 2016 16:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shelajev/1c179025f1e6ee1ea404 to your computer and use it in GitHub Desktop.
Save shelajev/1c179025f1e6ee1ea404 to your computer and use it in GitHub Desktop.
retrofit2-contributor.java
public class Contributor {
String login;
String html_url;
int contributions;
@Override
public String toString() {
return login + " (" + contributions + ")";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment