Created
January 13, 2017 22:58
-
-
Save wisnukurniawan/0334270725edc420a8c69c380e1a0e57 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 Item { | |
@SerializedName("full_name") | |
String repoName; | |
@SerializedName("url") | |
String url; | |
public String getRepoName() { | |
return repoName; | |
} | |
public String getUrl() { | |
return url; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment