Skip to content

Instantly share code, notes, and snippets.

@janishar
Created October 3, 2016 11:51
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 janishar/626f3d55b24fa1862fd7c7ce0269fd0e to your computer and use it in GitHub Desktop.
Save janishar/626f3d55b24fa1862fd7c7ce0269fd0e to your computer and use it in GitHub Desktop.
public class GitRepo {
@SerializedName("id")
@Expose
private Integer id;
@SerializedName("name")
@Expose
private String name;
@SerializedName("html_url")
@Expose
private String url;
@SerializedName("size")
@Expose
private Integer size;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public Integer getSize() {
return size;
}
public void setSize(Integer size) {
this.size = size;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment