diff --git a/Product.java b/Product.java new file mode 100644 index 0000000000000000000000000000000000000000..44a5ca94056cb55601a62c832a710201b30e1aca --- /dev/null +++ b/Product.java @@ -0,0 +1,39 @@ +public class Product { + public String name; + public String description; + public String picture; + public String altText; + public double price; + + public Product(String name, String description, String picture, String altText, double price) { + this.name = name; + this.description = description; + this.picture = picture; + this.altText = altText; + this.price = price; + } + + public String getName() { + return this.name; + } + + public String getAltText() { + return this.altText; + } + + public String getDescription() { + return this.description; + } + + public String getPicture() { + return this.picture; + } + + public double getPrice() { + return this.price; + } + + public String toString() { + return "Product"; + } +}