PR1/shop/Product.java

14 lines
213 B
Java

import shop;
public class Product{
String name;
int priceInCent;
public Product(String name, int price){
this.name = name;
this.priceInCent = price;
}
}