mirror of
https://github.com/Nezumi-2711/Foodify.git
synced 2026-09-22 20:00:50 +00:00
32 lines
556 B
Java
32 lines
556 B
Java
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;
|
|
}
|
|
}
|