/** * Reservation class this is the object that each Restaurant reservation * contains. * * @author Carlos Vega * @version 05/03/22 */ public class Reservation { private String name; private int seats; public Reservation(String name, int seats) { this.name = name.toLowerCase(); this.seats = seats; } public String getName() { return name; } public int getSeats() { return seats; } public String toString() { return this.name + " party of: " + this.seats; } }