adding template description fields to assignment form

This commit is contained in:
2023-07-26 23:05:47 -06:00
parent b03e81caf1
commit b03c699381
14 changed files with 147 additions and 25 deletions

View File

@@ -26,6 +26,10 @@ public record LocalAssignment
public ulong? canvasId = null;
public string name { get; init; } = "";
public string description { get; init; } = "";
public bool use_template { get; init; } = false;
public string? template_id { get; init; } = string.Empty;
public Dictionary<string, string> template_variables { get; init; } =
new Dictionary<string, string>();
public bool lock_at_due_date { get; init; }
public IEnumerable<RubricItem> rubric { get; init; } = new RubricItem[] { };
public DateTime? lock_at { get; init; }