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