Projekt_APO-Automat_spozywczy/AbstractProduct.java
2021-10-13 00:50:25 +02:00

23 lines
386 B
Java

package apo;
public class AbstractProduct {
private String name;
private double price;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public double getPrice() {
return price;
}
public void setPrice(double price) {
this.price = price;
}
}