passing canvas models tests

This commit is contained in:
2023-01-04 21:51:23 -07:00
parent 8fec96ce5c
commit ed897bc96e
42 changed files with 30 additions and 48 deletions

View File

@@ -0,0 +1,28 @@
namespace CanvasModel.Assignments;
public record TurnitinSettingsModel
(
[property: JsonPropertyName("originality_report_visibility")]
string OriginalityReportVisibility,
[property: JsonPropertyName("s_paper_check")]
bool SPaperCheck,
[property: JsonPropertyName("internet_check")]
bool InternetCheck,
[property: JsonPropertyName("journal_check")]
bool JournalCheck,
[property: JsonPropertyName("exclude_biblio")]
bool ExcludeBiblio,
[property: JsonPropertyName("exclude_quoted")]
bool ExcludeQuoted,
[property: JsonPropertyName("exclude_small_matches_type")]
bool? ExcludeSmallMatchesType = null,
[property: JsonPropertyName("exclude_small_matches_value")]
uint? ExcludeSmallMatchesValue = null
);