11 lines
264 B
C#
11 lines
264 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
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; }
|
|
} |