got rubric creation working

This commit is contained in:
2023-07-31 16:27:38 -06:00
parent 70db40867c
commit 17734ab641
10 changed files with 276 additions and 80 deletions

View File

@@ -0,0 +1,7 @@
using CanvasModel.Assignments;
public record CanvasRubricCreationResponse
{
public required CanvasRubric rubric { get; set; }
public CanvasRubricAssociation? rubric_association { get; set; }
}