Simple Database + Endpoints

This commit is contained in:
2025-12-07 12:07:10 +01:00
parent 35eee78efc
commit 3125d657dd
22 changed files with 595 additions and 23 deletions

View File

@@ -0,0 +1,12 @@
using System.ComponentModel.DataAnnotations;
namespace API.Models.Internal.Altersgruppen
{
public class AltersGruppe
{
public int Id { get; set; }
public string Name { get; set; }
public int StartingAge { get; set; }
public int EndingAge { get; set; }
}
}