Add validator data on sign up screen

This commit is contained in:
Nezumi
2023-03-15 12:04:19 +07:00
parent 134b5cd296
commit 92484ff1d5
48 changed files with 653 additions and 437 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;
}
}