mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
34 lines
820 B
C#
34 lines
820 B
C#
|
|
|
|
|
|
namespace CanvasModel.Enrollments;
|
|
public record GradeModel
|
|
(
|
|
[property: JsonPropertyName("html_url")]
|
|
string? HtmlUrl = null,
|
|
|
|
[property: JsonPropertyName("current_grade")]
|
|
float? CurrentGrade = null,
|
|
|
|
[property: JsonPropertyName("final_grade")]
|
|
float? FinalGrade = null,
|
|
|
|
[property: JsonPropertyName("current_score")]
|
|
float? CurrentScore = null,
|
|
|
|
[property: JsonPropertyName("final_score")]
|
|
float? FinalScore = null,
|
|
|
|
[property: JsonPropertyName("unposted_current_grade")]
|
|
float? UnpostedCurrentGrade = null,
|
|
|
|
[property: JsonPropertyName("unposted_final_grade")]
|
|
float? UnpostedFinalGrade = null,
|
|
|
|
[property: JsonPropertyName("unposted_current_score")]
|
|
float? UnpostedCurrentScore = null,
|
|
|
|
[property: JsonPropertyName("unposted_final_score")]
|
|
float? UnpostedFinalScore = null
|
|
);
|