Files
canvasManagement/Management/Models/Local/LocalQuizQuestionAnswer.cs

11 lines
248 B
C#

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;
}