feat(model): add initial entity models for restaurant system

This commit is contained in:
2026-06-17 01:39:03 +03:30
parent efc439f926
commit aea9834d13
4 changed files with 58 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
package dev.model;
public class MenuItem {
private int id;
private String name;
private String description;
private double price;
private String category;
}