You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
winscrape/agent-smith/src/UpdatePageRow.java

19 lines
582 B

public class UpdatePageRow {
public String title;
public String product;
public String productType;
public String lastUpdated;
public String version;
public String size;
public String uuid;
UpdatePageRow(String title, String product, String productType, String lastUpdated, String version, String size, String uuid) {
this.title = title;
this.product = product;
this.productType = productType;
this.lastUpdated = lastUpdated;
this.version = version;
this.size = size;
this.uuid = uuid;
}
}