mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
10 lines
329 B
C#
10 lines
329 B
C#
namespace LocalModels;
|
|
|
|
public record LocalCourse
|
|
{
|
|
public IEnumerable<LocalModule> Modules { get; init; } = Enumerable.Empty<LocalModule>();
|
|
public string Name { get; init; } = string.Empty;
|
|
public IEnumerable<DayOfWeek> DaysOfWeek { get; init; } = Enumerable.Empty<DayOfWeek>();
|
|
public ulong? CanvasId { get; init; }
|
|
}
|