42 lines
898 B
Java
42 lines
898 B
Java
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;
|
|
}
|
|
} |