Item Search V1

Still needs testing.
This commit is contained in:
NMerz
2020-10-05 22:54:43 -04:00
parent c96a40f0df
commit 68051fdaca
5 changed files with 100 additions and 1 deletions

View File

@@ -0,0 +1,27 @@
package com.example.listify.data;
import java.util.ArrayList;
public class ItemSearch {
ArrayList<Item> results;
public ItemSearch(ArrayList<Item> results) {
this.results = results;
}
@Override
public String toString() {
return "ItemSearch{" +
"results=" + results +
'}';
}
public ArrayList<Item> getResults() {
return results;
}
public void setResults(ArrayList<Item> results) {
this.results = results;
}
}