Files
Projet4/PyroFetes/Models/Classification.cs

12 lines
282 B
C#

using System.ComponentModel.DataAnnotations;
using API.Models;
namespace PyroFetes.Models;
public class Classification
{
[Key] public int Id { get; set; }
[Required] public string? Label { get; set; }
[Required] public List<Product>? Products { get; set; }
}