Merge home fragment to back-end API project

This commit is contained in:
Nezumi
2023-03-09 17:17:54 +07:00
parent e100a0cf5a
commit 435d3f8fd2
26 changed files with 489 additions and 256 deletions
@@ -0,0 +1,31 @@
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;
}
}