package com.yang.demo.entity;
/**
* Created by yangyang on 2017/2/17.
*/
public class DownloadEntity {
private String title;
private String url;
private String hashCode;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public String getHashCode() {
return hashCode;
}
public void setHashCode(String hashCode) {
this.hashCode = hashCode;
}
}