Files
LehrerApp/LehrerApp.Api/ReadableSnapshot.cs
T
2026-06-19 00:42:00 +02:00

19 lines
488 B
C#

using LehrerApp.Core.Models;
namespace LehrerApp.Api;
public class ReadableSnapshot
{
public DateTime ExportedAt { get; set; }
public ReadableSnapshotMeta Meta { get; set; } = new();
public List<LearningGroup> Groups { get; set; } = [];
public List<Student> Students { get; set; } = [];
public List<Enrollment> Enrollments { get; set; } = [];
}
public class ReadableSnapshotMeta
{
public int StudentCount { get; set; }
public int GroupCount { get; set; }
}