Files
AP-WEB-PF3/PF3/Models/Classification.cs

11 lines
263 B
C#

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