removed deprecated library

This commit is contained in:
2024-08-23 09:38:53 -06:00
parent ffbd43a7e5
commit 8f532c9a7d
6 changed files with 50 additions and 27 deletions

View File

@@ -1,6 +1,6 @@
namespace CanvasModel.EnrollmentTerms;
public record coRedundantEnrollmentTermsResponse
public record RedundantEnrollmentTermsResponse
(
[property: JsonPropertyName("enrollment_terms")]
IEnumerable<EnrollmentTermModel> EnrollmentTerms

View File

@@ -9,6 +9,7 @@ public record LocalQuizQuestionAnswer
public string Text { get; init; } = string.Empty;
public string? MatchedText { get; init; }
public IEnumerable<string>? MatchDistractors { get; init; }
public string HtmlText => MarkdownService.Render(Text);