got basic question and answer creation from canvas

This commit is contained in:
2023-08-17 18:50:59 -06:00
parent 4fb257e000
commit 28ad344018
18 changed files with 604 additions and 204 deletions

View File

@@ -2,7 +2,8 @@ namespace LocalModels;
public record LocalQuizQuestionAnswer
{
public string Id { get; set; } = string.Empty;
public ulong? CanvasId { get; init; }
public string Id { get; init; } = string.Empty;
//correct gets a weight of 100 in canvas
public bool Correct { get; init; }