feat(model): add initial entity models for restaurant system
This commit is contained in:
@@ -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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user