Files
AP-WEB-PF3/PF3/Models/SoundCategory.cs
2025-10-02 17:21:25 +02:00

13 lines
290 B
C#

using System.ComponentModel.DataAnnotations;
namespace PF3.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; } = new List<Sound>();
}