mirror of
https://github.com/ClaytonWWilson/Listify.git
synced 2026-03-11 02:55:04 +00:00
Item Search V1
Still needs testing.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user