initial commit

This commit is contained in:
2020-04-18 17:10:06 +03:00
parent 300ca1bbf3
commit e7aff9a5c9
142 changed files with 717 additions and 721 deletions

View File

@@ -0,0 +1,25 @@
package ch.pizzacucia.android.model;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import java.util.ArrayList;
/**
* Created by cimenmus on 21.10.2017.
*/
public class ShippingMethodsResponseModel {
@Expose
@SerializedName("shipping_methods")
private ArrayList<ShippingMethodModel> paymentMethodsList;
public ArrayList<ShippingMethodModel> getPaymentMethodsList() {
return paymentMethodsList;
}
public void setPaymentMethodsList(ArrayList<ShippingMethodModel> paymentMethodsList) {
this.paymentMethodsList = paymentMethodsList;
}
}