implement MenuiItem.java

This commit is contained in:
2026-06-26 22:43:25 +03:30
parent 00f990c653
commit a58476f109
+5
View File
@@ -12,4 +12,9 @@ public class MenuItem {
private String category;
public void setId(int id) { this.id = id; }
public void setName(String name) { this.name = name; }
public void setDescription(String description) { this.description = description; }
public void setPrice(double price) { this.price = price; }
public void setCategory(String category) { this.category = category; }
}