Files
Projet4/PyroFetes/Models/Effect.cs
2025-10-09 17:12:17 +02:00

11 lines
273 B
C#

using System.ComponentModel.DataAnnotations;
namespace PyroFetes.Models;
public class Effect
{
[Key] public int Id { get; set; }
[Required, MaxLength(200)] public string? Label { get; set; }
public List<ProductEffect>? ProductEffects { get; set; }
}