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? Products { get; set; } }