feat: add online editor, work in progress

This commit is contained in:
2026-01-30 19:48:30 +01:00
parent e274352f98
commit ebb10ed61b
9 changed files with 621 additions and 44 deletions

View File

@@ -20,8 +20,10 @@ public class CartItem {
public int getMinPrice() { return minPrice; }
public int getMaxPrice() { return maxPrice; }
public int getQuantity() { return quantity; }
public void setQuantity(int quantity) { this.quantity = quantity; }
public int getTotalMin() { return minPrice * quantity; }
public int getTotalMax() { return maxPrice * quantity; }
public String getImageFile() { return imageFile; }
// Setters
public void setQuantity(int quantity) { this.quantity = quantity; }
}