us.codecraft.webmagic.samples.GithubRepo Maven / Gradle / Ivy
The newest version!
package us.codecraft.webmagic.samples;
/**
* @author [email protected]
*/
public class GithubRepo {
private String name;
private String author;
private String readme;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
public String getReadme() {
return readme;
}
public void setReadme(String readme) {
this.readme = readme;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy