1
0
forked from s444420/AL-2020
AL-2020/objects/Product.js

8 lines
180 B
JavaScript
Raw Normal View History

2020-04-05 17:07:25 +02:00
class Product {
constructor(name, type, farcing, price) {
this.name = name;
this.type = type;
this.farcing = farcing;
this.price = price
}
}