Created
January 13, 2017 22:49
-
-
Save wisnukurniawan/f0587520c7cce04cbadcb092c1b31829 to your computer and use it in GitHub Desktop.
Retrofit2
This file contains hidden or 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
/** | |
* 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