restructured components so that there are more components in the pages

This commit is contained in:
2024-01-11 17:28:14 -07:00
parent 4fb5d9a25d
commit 5666d3dc85
22 changed files with 110 additions and 85 deletions

View File

@@ -0,0 +1,8 @@
namespace LocalModels;
public record LocalCoursePage
{
public required string Title { get; init; }
public required string Text { get; set; }
public DateTime? DueDateForOrdering { get; init; }
}