[Added] created method for CouponListManager

This commit is contained in:
sebas
2020-12-14 11:21:43 +01:00
parent e5fa7db27d
commit 13b73fb0de

View File

@@ -1,4 +1,23 @@
package com.a1.nextlocation.recyclerview;
import com.a1.nextlocation.data.Coupon;
import java.util.List;
public class CouponListManager {
private List<Coupon> coupon;
public CouponListManager(){
}
public List<Coupon> getCoupon() {
return coupon;
}
public void setCoupon(List<Coupon> location) {
this.coupon = coupon;
}
}