Back to project page openpizza-android.
The source code is released under:
MIT License
If you think the Android project openpizza-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package de.openpizza.android.service.data; //from ww w . ja v a 2 s. com import java.util.List; public class OrderContentRequest { private List<Product> products; private String comment; public OrderContentRequest() { // empty constructor for gson } public OrderContentRequest(List<Product> products, String comment) { super(); this.products = products; this.comment = comment; } public List<Product> getProducts() { return products; } public void setProducts(List<Product> products) { this.products = products; } public String getComment() { return comment; } public void setComment(String comment) { this.comment = comment; } }