Creating of Product entities to resolve error in 4 files.

This commit is contained in:
2025-09-26 16:31:00 +01:00
parent 1078244eeb
commit a8a6aa4094

View File

@@ -0,0 +1,8 @@
using System.ComponentModel.DataAnnotations;
namespace PyroFetes.Models;
public class Product
{
[Key] public int Id { get; set; }
}