aufräumen

This commit is contained in:
2026-08-12 17:45:02 +02:00
parent 0823a023c9
commit a1e722ace1
27 changed files with 542 additions and 197 deletions
-1
View File
@@ -9,6 +9,5 @@
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
<PackageReference Include="LiteDB" />
<PackageReference Include="System.Text.Json" />
</ItemGroup>
</Project>
+2 -1
View File
@@ -7,8 +7,9 @@ public class ReadableSnapshot
public DateTime ExportedAt { get; set; }
public ReadableSnapshotMeta Meta { get; set; } = new();
public List<LearningGroup> Groups { get; set; } = [];
public List<Subject> Subjects { get; set; } = [];
public List<Student> Students { get; set; } = [];
public List<Enrollment> Enrollments { get; set; } = [];
public List<GroupMembership> Memberships { get; set; } = [];
}
public class ReadableSnapshotMeta