/**
 * Container class for a option which contains the name and the price
 */

public class Option {
  String name;
  double price;
  
  /**
   * Create a new option
   * @param name the name of the option
   * @param price the price of the option
   */
  Option(String name, double price) {
    this.name = name; this.price = price;
  }
}
