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

11 lines
269 B
C#

using System.ComponentModel.DataAnnotations;
namespace PyroFetes.Models;
public class SoundCategory
{
[Key] public int Id { get; set; }
[Required, MaxLength(100)] public string Name { get; set; } = null!;
public List<Sound>? Sounds { get; set; }
}