This commit is contained in:
Reza
2026-06-22 19:42:41 +03:30
parent 00f990c653
commit e10d7f02e5
21 changed files with 569 additions and 234 deletions
+32 -5
View File
@@ -1,15 +1,42 @@
package dev.model;
public class MenuItem {
private int id;
private String name;
private String description;
private double price;
private String category;
public MenuItem() {}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public double getPrice() {
return price;
}
public void setPrice(double price) {
this.price = price;
}
public String getCategory() {
return category;
}
public void setCategory(String category) {
this.category = category;
}
}