/**
 * Represents an item on the menu with ID, name, price, and category.
 */
public class Item {
    private Integer ID;
    private String name;
    private float price;
    private String category;

    /**
     * Creates a new Item object with given properties.
     */
    public Item(Integer ID, String name, float price, String category) {
        this.ID = ID;
        this.category = category;
        this.name = name;
        this.price = price;
    }

    // Getters
    public Integer getID() { return ID; }
    public String getCategory() { return category; }
    public String getName() { return name; }
    public float getPrice() { return price; }
}