mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
13 lines
478 B
C#
13 lines
478 B
C#
public record LocalQuiz
|
|
{
|
|
public string Id { get; init; } = ""; public ulong? CanvasId { get; init; } = null;
|
|
public string Name { get; init; } = "";
|
|
public string Description { get; init; } = "";
|
|
public bool LockAtDueDate { get; init; }
|
|
public DateTime? LockAt { get; init; }
|
|
public DateTime DueAt { get; init; }
|
|
public bool ShuffleAnswers { get; init; }
|
|
public bool OneQuestionAtATime { get; init; }
|
|
public int AllowedAttempts { get; init; }
|
|
//quiz type
|
|
} |