working on difference calculations

This commit is contained in:
2024-05-03 21:33:06 -06:00
parent 26bf2bbbd1
commit 5c931af141
6 changed files with 309 additions and 5 deletions

View File

@@ -3,7 +3,7 @@ namespace LocalModels;
public record LocalCourse
{
public IEnumerable<LocalModule> Modules { get; init; } = Enumerable.Empty<LocalModule>();
public required LocalCourseSettings Settings { get; set; }
public required LocalCourseSettings Settings { get; init; }
}
public record SimpleTimeOnly