Skip to content

Instantly share code, notes, and snippets.

@wisnukurniawan
Created January 13, 2017 22:58
Show Gist options
  • Save wisnukurniawan/0334270725edc420a8c69c380e1a0e57 to your computer and use it in GitHub Desktop.
Save wisnukurniawan/0334270725edc420a8c69c380e1a0e57 to your computer and use it in GitHub Desktop.
Retrofit2
/**
* 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