working on canvas sync

This commit is contained in:
2023-07-31 12:18:10 -06:00
parent 2cca727b4d
commit 1511763f14
6 changed files with 92 additions and 24 deletions

View File

@@ -0,0 +1,9 @@
public record CanvasAssignmentCreationRequest
{
public string? name { get; set; }
public IEnumerable<string> submission_types { get; set; } = Enumerable.Empty<string>();
public string? description { get; set; }
public DateTime? lock_at { get; set; }
public DateTime? due_at { get; set; }
public int? points_possible { get; set; }
}