Files
PF3-fork/PyroFetes/Models/SoundCategory.cs
2025-10-03 14:54:25 +01:00

10 lines
270 B
C#

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