Simple Database + Endpoints
This commit is contained in:
12
API/Models/Internal/Altersgruppen/AltersGruppe.cs
Normal file
12
API/Models/Internal/Altersgruppen/AltersGruppe.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user