From fd8de669c98678a34c0690c6e3e264ed34151497 Mon Sep 17 00:00:00 2001
From: Rayana <rlyons8@cs.washington.edu>
Date: Tue, 13 Feb 2024 01:45:02 -0800
Subject: [PATCH] Added Product

---
 Products.java | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/Products.java b/Products.java
index 74e3303..c06e67f 100644
--- a/Products.java
+++ b/Products.java
@@ -908,4 +908,16 @@ public class Products { /* a good class, but not as good as cse391 */
             199.99
         );
     }
+
+    public Product rlyons8product() {
+	    return new Product(
+			    "Meowchi Plushie",
+			    "A cute neko plushie",
+			    "meowchi.jpeg",
+			    "Meowchi",
+			    17.99
+			    );
+    }
+
+
 }
-- 
GitLab