Add Product record to represent product details

This commit is contained in:
Jesus Navalon
2026-07-11 17:36:22 +02:00
parent ff90b9b699
commit 54208ba87f
@@ -0,0 +1,7 @@
package com.example.productaffinity.domain.model;
import java.math.BigDecimal;
// Represents a product detail
public record Product(String id, String name, BigDecimal price, boolean availability) {
}