mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
14 lines
319 B
C#
14 lines
319 B
C#
namespace LocalModels;
|
|
|
|
public record LocalCourse
|
|
{
|
|
public IEnumerable<LocalModule> Modules { get; init; } = Enumerable.Empty<LocalModule>();
|
|
public required LocalCourseSettings Settings { get; set; }
|
|
}
|
|
|
|
public record SimpleTimeOnly
|
|
{
|
|
public int Hour { get; init; } = 1;
|
|
public int Minute { get; init; } = 0;
|
|
}
|