Merge develop into master #1

Merged
SemvdH merged 297 commits from develop into main 2021-01-06 22:20:51 +00:00
Showing only changes of commit 13b73fb0de - Show all commits

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;
}
}