Files
Projet4/PyroFetes/Models/Product.cs

8 lines
140 B
C#

using System.ComponentModel.DataAnnotations;
namespace PyroFetes.Models;
public class Product
{
[Key] public int Id { get; set; }
}