package com.capstone.foodify.Model; public class Image { private int id; private String imageUrl; private int productId; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getImageUrl() { return imageUrl; } public void setImageUrl(String imageUrl) { this.imageUrl = imageUrl; } public int getProductId() { return productId; } public void setProductId(int productId) { this.productId = productId; } }