mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
11 lines
224 B
C#
11 lines
224 B
C#
namespace CanvasModel.Assignments;
|
|
|
|
public record CanvasNeedsGradingCount
|
|
(
|
|
[property: JsonPropertyName("section_id")]
|
|
string SectionId,
|
|
|
|
[property: JsonPropertyName("needs_grading_count")]
|
|
uint NeedsGradingCount
|
|
);
|