mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 15:48:32 -06:00
updated quiz form edtor
This commit is contained in:
10
Management/Models/Local/LocalQuizQuestionAnswer.cs
Normal file
10
Management/Models/Local/LocalQuizQuestionAnswer.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace LocalModels;
|
||||
|
||||
public record LocalQuizQuestionAnswer
|
||||
{
|
||||
public string Id { get; set; } = string.Empty;
|
||||
|
||||
//correct gets a weight of 100 in canvas
|
||||
public bool Correct { get; init; }
|
||||
public string Text { get; init; } = string.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user