public class Good { String name; double price; Good(String name, double price) { this.name = name; this.price = price; } }