From a8a6aa409484ca132a71db9f923d7e0f7dd8b38e Mon Sep 17 00:00:00 2001 From: sanchezvem Date: Fri, 26 Sep 2025 16:31:00 +0100 Subject: [PATCH] Creating of Product entities to resolve error in 4 files. --- PyroFetes/Models/Product.cs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 PyroFetes/Models/Product.cs diff --git a/PyroFetes/Models/Product.cs b/PyroFetes/Models/Product.cs new file mode 100644 index 0000000..1c98a9a --- /dev/null +++ b/PyroFetes/Models/Product.cs @@ -0,0 +1,8 @@ +using System.ComponentModel.DataAnnotations; + +namespace PyroFetes.Models; + +public class Product +{ + [Key] public int Id { get; set; } +} \ No newline at end of file