package com.example.foodinder_app; public class CardItem { private String drawableId; private String name; private String location; public CardItem(String drawableId, String name, String location) { this.drawableId = drawableId; this.name = name; this.location = location; } public CardItem() {} public String getDrawableId() { return drawableId; } public void setDrawableId(String drawableId) { this.drawableId = drawableId; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getLocation() { return location; } public void setLocation(String location) { this.location = location; } }