package io.reisub.dreambot.cshopper; public class Configuration { private final String traderName; private final ItemWrapper[] items; public Configuration(String traderName, ItemWrapper... items) { this.traderName = traderName; this.items = items; } public String getTraderName() { return traderName; } public ItemWrapper[] getItems() { return items; } }