using System.ComponentModel.DataAnnotations; namespace PF3.Models; public class Classification { [Key] public int Id { get; set; } [Required, MaxLength(100)] public string? Label { get; set; } public List? Products { get; set; } }