init 1.0.0
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user