working on rubric

This commit is contained in:
2023-07-25 09:08:09 -06:00
parent ffaf4e1164
commit a8221ccb5f
8 changed files with 204 additions and 35 deletions

View File

@@ -1,4 +1,9 @@
public record RubricItem(int Points, string Label);
public record RubricItem
{
public string Id { get; set; } = "";
public string Label { get; set; } = "";
public int Points { get; set; } = 0;
}
public enum SubmissionType
{