Schüler hinzufügen, Kompetenzen

This commit is contained in:
2026-06-23 13:46:39 +02:00
parent b2211270b4
commit 220969fdfa
23 changed files with 1230 additions and 88 deletions
+9
View File
@@ -0,0 +1,9 @@
namespace LehrerApp.Core.Models;
public class Subject
{
public Guid Id { get; set; } = Guid.NewGuid();
public string Name { get; set; } = "";
public string ShortName { get; set; } = "";
public DateTime UpdatedAt { get; set; } = DateTime.UtcNow;
}