pass in a config object rather than a term to create a semester

This commit is contained in:
2023-01-09 19:55:06 -07:00
parent dc70216f1d
commit 6c91078147
4 changed files with 41 additions and 38 deletions

View File

@@ -0,0 +1,5 @@
public record SemesterConfiguration(
DateTime StartDate,
DateTime EndDate,
IEnumerable<DayOfWeek> Days
);