mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
11 lines
355 B
C#
11 lines
355 B
C#
namespace LocalModels;
|
|
|
|
public record LocalModule
|
|
{
|
|
public string Name { get; init; } = string.Empty;
|
|
public string Notes { get; set; } = string.Empty;
|
|
public IEnumerable<LocalAssignment> Assignments { get; init; } = [];
|
|
public IEnumerable<LocalQuiz> Quizzes { get; init; } = [];
|
|
public IEnumerable<LocalCoursePage> Pages { get; init; } = [];
|
|
}
|