mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 15:48:32 -06:00
10 lines
222 B
C#
10 lines
222 B
C#
namespace CanvasModel.Assignments;
|
|
|
|
public record NeedsGradingCountModel
|
|
(
|
|
[property: JsonPropertyName("section_id")]
|
|
string SectionId,
|
|
|
|
[property: JsonPropertyName("needs_grading_count")]
|
|
uint NeedsGradingCount
|
|
); |