package com.theorchard.javaowsassetbulkscript.api;

import java.util.List;

public class ProductListing {

    private List<ProductItem> items;

    public void setItems(List<ProductItem> items) {
        this.items = items;
    }

    public List<ProductItem> getItems() {
        return items;
    }

}
